1
votes

I am new with jenkins and continuous integration so please tell me if I have any wrong concept or silly questions. As far as i have understood, its possible to integrate jenkins,github and android studio together and when something is committed from android studio to github then jenkin compiles and builds it automatically and programmer gets notified of the success/fail result.

I have installed Jenkins and build-ed one android project from github in jenkins. But I have done it manually as in from localhost jenkins tool i have configured jenkins with github repo and run>build.

Now am looking for how to automate the process from android studio but can't find any good links/tutorials. How do I integrate the following 3 and make the process automated:

  1. Jenkins
  2. github
  3. android studio

It might seem like a duplicate question but I couldn't really find a proper answers as below are some links I have found with no solutions:

  1. android-studio-with-jenkins-integration.

  2. Continuous integration with jenkins using android studio

How do I do it. Any links for how to do it would be great.

1
requesting off-site resources is being considered off-topic, which includes requests for tutorials & libraries.Martin Zeitler

1 Answers

0
votes

you push code from Android Studio to Github - and then, Jenkins can check out from there and build.

there isn't much to tell about it; except that Android Studio & Jenkins both need to act as Git clients.

Android Studio -- pushes commits --> GitHub.

Jenkins <-- pulls commits -- GitHub.