Stop publishing your Android apps manually and start doing this in a fully automated fashion to any stage (test, beta, and prod).
π Watch this 5 min explanation video to get a deeper understanding of the approach and benefits π
- Quick start CI/CD: With this boilerplate, you can easily build the CI/CD for your android app based on Fastlane.
- Easy adaptation to external CI/CD tools: We use GitLab-ci or GitHub actions as the executor of Fastlane commands and the construction of the workflow.
- Notification: Pipeline operation Slack notifications, notifications about successful operations or errors in the pipeline process.
- No special build machine setup is required: We build the application inside a docker container with all the dependencies installed; this provides portability and the ability to use standard GitHub agents or GitLab runners.
- Let's try to answer some questions:
- What is CI/CD?
- Above all, CI/CD allows you to increase productivity through automation. As in the manufacturing industry, you can automate the repetitive assembly process (application assembly) with automated workers, allowing developers to focus on value-added design and development processes.
- What are the benefits of using CI/CD in mobile development?
Faster release cycles
- With CI/CD, developers get used to make even the smallest code changes, as they will be built and delivered automatically in the background. This automated flow ensures that there is always an alpha or beta release ready for testing with the latest code.
Faster feedback/response with "continuous integration"
- With a faster release cycle with fewer changes, it becomes possible to pinpoint the source of a bug when a problem is identified. This is especially important for large teams where code conflicts can cause significant problems.
Improve coding discipline with query-based assembly and automated tests
- With a pull request commit, the build occurs before the merge, followed by automatic unit testing and code verification after each merge; the code itself is tested more thoroughly before it becomes part of the release.
Early warning and increased testing with "continuous deployment"
- By testing each individual change with multiple steps in the testing workflow, problems can be identified faster.
Isolation from the complexities associated with application delivery
- Every development discipline has its own set of complexities, and mobile apps are no exception. Android has completely independent and different processes for creating, signing, distributing, and installing apps. CI/CD helps to automate this process.
- What is CI/CD?
- This diagram describes the flow which we use
- Step descriptions
- build base image - Step for build base image which used for build application.
- tests and lints - Step for run tests and lints.
- build and deploy to firebase - Step for build and deploy application to Firebase.
- build and deploy to google play - Step for build and deploy application and Google Play.
- It is worth explaining what several builds are used for.
Terms and conditions:
- Applications in
apk
format cannot be uploaded to Google Play - Applications in
aab
format can be uploaded in Firebase and Google Play
Because of it, we have to build several builds.
- For the convenience of testing, at the stage of
Merge Request
, we give the opportunity to build the application on demand and send it toFirebase
. - It is convenient to check your application without merging code to the main branch.
- The application in
apk
format upload to the Firebase.
- GitLab:
- We have a manual step to deploy an application to Google Play.
- We have a manual step for building and deploying an application to staging
Firebase
; this step is available onMerge Request1
.
- GitHub:
- We use trstringer/manual-approval action, which helps to create manual approval in the deployment to Google Play.
- We use a manual job -
workflow_dispatcher
for building and deploying an application from any branch.
- Fastlane plugin badge
-
This gem helps to add a badge to your Android app icon.
-
More info here
-
You can always configure it for your project, but here are examples of how we did it.
-
- Fastlane - Fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application.
- GitLab-ci or GitHub Actions - CI/CD systems are used to build the pipeline logic and to execute Fastlane lanes.
- docker - Docker is used as the build environment for the application.
- CGP
- Firebase - Testing environment for the application.
- Google Play - Production environment for the application.
.
βββ app - Folder which contains example application
βΒ Β βββ build.gradle - File for android project configuration
βΒ Β βββ src
βββ build.gradle
βββ Dockerfile - Dockerfile for base image which used in build step
βββ docs - Folder for documentation
βββ fastlane - Folder with fastlane configuration
βΒ Β βββ Appfile - File for main fastlane configuration
βΒ Β βββ Fastfile - File for configuration fastlane actions
βΒ Β βββ Pluginfile - File for configuration fastlane dependencies
βββ Gemfile
βββ gradle - Folder for gradle build tool
βββ gradle.properties - File for gradle configuration
βββ gradlew
βββ gradlew.bat
βββ ic_launcher-web.png
βββ libs
βββ proguard-project.txt
βββ project.properties
βββ README.md
βββ settings.gradle - File for graddle setting
- Create an account in the Google cloud platform
- Create a Google cloud project
- Create a Firebase project and activate app distribution
- Create a Google Play developer account
-
Json file with configuration for Firebase
- You must add a json file with the Firebase project settings encoded to base64 to the environment variable.
base64 google-services.json > firebase_setting
- You must add a json file with the Firebase project settings encoded to base64 to the environment variable.
-
Service account with access to Firebase
- Create Service Account for the release application to Firebase
Choose your Firebase account --> Project Overview --> Project setting --> Service Account --> create service account
- Add SA key encoded to base64 to an environment variable.
base64 sa.json > key_firebase
- Create Service Account for the release application to Firebase
-
Service account with access to Google Play
- Create Service Account for release application to Google Play
- Add SA key encoded to base64 to an environment variable
base64 google_play.json > google_play
-
Keystore for signing an application
- To sign an application, you need a key, which can be generated with the command.
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
- Add signing keystore encoded to base64 to an environment variable.
base64 my-release-key.keystore > keystore
- To sign an application, you need a key, which can be generated with the command.
- We use
Environments
in our pipeline to divide our variables by environments; before you start please create 3 environments ingitlab-ci-cd
:
GitLab --> Deployments --> Environment --> New Environment
- We need to create three environments:
- staging
- prod
- prod-gp
- We can use environments in GitHub Actions, but the environments are available only in public repositories or in corporate subscriptions.
- In this boilerplate, we don't use environments in GitHub Actions.
-
Copy content of this file
firebase_setting
:GitLab --> Settings --> CI/CD --> Variables --> Add variable
or
GitHub --> Settings --> Secrets --> Actions --> New repository secret
In the key field paste
GOOGLE_SERVICES_JSON
in the value field paste yourgoogle-services.json
encoded to base64. -
Copy content of this file
key_firebase
:GitLab --> Settings --> CI/CD --> Variables --> Add variable
or
GitHub --> Settings --> Secrets --> Actions --> New repository secret
In the key field paste
SA_JSON_KEY
in the value field paste yoursa.key
encoded to base64. -
Copy content of this file
google_play
:GitLab --> Settings --> CI/CD --> Variables --> Add variable
or
GitHub --> Settings --> Secrets --> Actions --> New repository secret
In the key field paste
SA_JSON_GP_KEY
in the value field paste yourgoogle_play.json
encoded to base64. -
Copy content of this file
keystore
:GitLab --> Settings --> CI/CD --> Variables --> Add variable
or
GitHub --> Settings --> Secrets --> Actions --> New repository secret
In the key field paste
KEYSTORE
in the value field paste yourmy-release-key.keystore
encoded to base64.
NAME | ENVIRONMENT | DESCRIPTION |
---|---|---|
KEYSTORE | ALL | Encoded to base64 signing keystore (base64) |
KEYSTORE_PW | ALL | Password for signing keystore |
ALIAS | ALL | Keystore alias |
ALIAS_PW | ALL | Password for keystore alias |
SA_JSON_KEY | STAGING/PROD | Service Account key for Firebase (base64) |
SA_JSON_GP_KEY | PROD-GP | Service account key for Google Play Console (base64) |
GOOGLE_SERVICES_JSON | ALL | Main configuration file for Firebase |
APP_VERSION_NAME | STAGING/PROD/PROD-GP | Application version |
FIREBASE_APP_ID | STAGING/PROD | Application ID in Firebase |
BUILD_TASK | STAGING/PROD/PROD-GP | Task name in gradle (assemble, bundle, test) |
BUILD_TYPE | STAGING/PROD/PROD-GP | Build type (assemble, release) |
SLACK_WEBHOOK_URL | ALL | Slack webhook |
FIREBASE_TESTER_GROUP_NAME | STAGING/PROD | Name of testers group in Firebase |
APPROVERS | ALL | List of approvers for Google Play release, used only in GitHub Actions |
CI_PIPELINE_ID | ALL | Pipeline ID used for versionCode , by default declared in the GitLab, in the GitHub Actions used github.run_number |
CI_COMMIT_BEFORE_SHA | ALL | Previous commit, used for build changelog, by default declared in the GitLab, in the GitHub Actions used github.event.before |
FIREBASE_ARTIFACT_TYPE | STAGING/PROD | Artifact type for Firebase distribution |
PROJECT_DIR | ALL | If the project is not in the main directory, you can specify the path to the project directory through the PROJECT_DIR variable in Fastfile. |
APP_PACKAGE_NAME | ALL | The default android package name for example we use com.boiler.android.hello |
CI_ENVIRONMENT_NAME | STAGING/PROD | Used in fastlane badge, to display env in icon. |
- When you complete all this preparation, you can start to build and release the application to Firebase
- We have
Pluginfile
in this file we can configure plugins for Fastlane, by default we use fastlane-plugin-firebase_app_distribution and fastlane-plugin-badge