CI/CD for Android
📚 Learn more about Android action features, integrations and alternatives.
Buddy lets you create delivery pipelines that will build, sign and deploy your Android apps to Google Play on a single push to a branch. The pipelines consist of actions that you can configure depending on your needs.
Example Andriod pipeline
Configuration is very easy and takes only a couple of minutes.
1. Select your Git repository
Buddy supports all popular Git hosting providers, including GitHub, Bitbucket, and GitLab. You can also use your own private Git server or host code directly on Buddy.
Supported Git providers
2. Add a new delivery pipeline
Enter the pipeline's name, select the trigger mode, and define the branch from which Buddy will fetch your code:
Exemplary pipeline settings
​Branch assignment — this is the branch from which Buddy will deploy. If you set the trigger mode to On push, Buddy will execute the pipeline upon every push to that branch.
Trigger modes
- Manual (on click) — recommended for Production
- On push (automatic) — recommended for Development
- Recurrently (on time interval) — recommended for Staging/Testing
3. Add actions
Buddy lets you choose from dozens of predefined actions. In this example, we'll add 3 actions that will perform the following tasks:
- Build your Android application
- Sign app with your key
- Upload APK to Google Play
- Send notification to Slack
3.1 Build your Android application
Look up and click the Build APK action to configure it. Here you can choose the versions of SDK and Build tools and determine the commands to execute. The default commands are:
export ANDROID_HOME="/opt/android/sdk/" export BUILD_TOOLS_VER="27.0.3" export PATH=$PATH:/opt/android/sdk/build-tools/$BUILD_TOOLS_VER #build chmod +x gradlew #./gradlew assembleDebug ./gradlew assembleRelease
$$$$$$$
Android build commands
3.2 Sign your application (APK)
Add Sign APK action from the actions menu. Select the path of the APK and provide the keystore with its password:
Sign APK configuration
3.3 Deploy APK to Google Play
The package is now ready for deployment. Head to the Android section and select Google Play:
Google Play action
When adding the action you can choose what and where should be uploaded:
Google Play action configuration
3.4 Send notification to Slack
You can configure Buddy to send your team a message after the deployment. In this example we'll use Slack:
Notification actions
If you add this action to Actions run on failure, Buddy will only send a message if something went wrong with your build or deployment.
4. Google Play: Private keys and permission setup
In order to deliver your application to Google Play you need to do two things:
- Create a service account with a private key in the
.json
format - Set up the appropriate permissions from the Google Play Developer Console
4.1 Create service account
- Open the Google Play Developers Console (you’ll need to log in if you haven’t done it already).
- In the left sidebar, click the Settings → API access:
Google Play Console API access page
- Now click Create Service Account. A pop-up will appear:
Creating Service Account
- Open the Google API Console. Click the Create Service Account button:
Google API Console
- Enter the details and check Furnish a new private key. Make sure to select JSON as the key type:
Creating a new private key
- Click the Create button to create the service account—the private key for the service account will be downloaded.
At this point, the JSON private key has been downloaded to your computer (you’ll need to upload this file to Buddy in the next step). Make sure that you store the private key in a secure place as you won’t be able to retrieve it if it’s lost.
4.2 Set up permissions
- Return to the Google Play Developer Console
- In the Service Accounts panel, find the account that you’ve just created and click Grant Access
- Here you can adjust permissions for the service account. Make sure to select Release manager in the Role dropdown
Granting access to a new user
- Click Add User when done.
Congratulations! You can now deploy your application to the Google Play store.
5. Summary
Congratulations! You have just automated your entire delivery process. Make a push to the selected branch and watch Buddy fetch, build, and deploy your project. With Continuous Delivery applied, you can now focus on what's really important: developing awesome apps! 🔥
Bear in mind that this article is only a brief example of what Buddy can do. You can create additional pipelines for staging and production environments, integrate with your favorite services (AWS, Google, Azure), trigger tests on pull requests, build Docker images, and push them to the registry—the possibilities are unlimited.
If you want us to create a delivery pipeline for your project, drop a line to support@buddy.works – we'll be happy to help!
Last modified on July 13, 2022