Android Application -> Firebase Distribution
Steps to configure your android application to distribute to Firebase in CI/CD
Create a service account:
base64 service-account-credentials.jsonecho $SERVICE_ACCOUNT_CREDENTIALS_ENCODED | base64 -di >> <CODE_DIR>/app/service-account-credentials.jsonclasspath('com.google.firebase:firebase-appdistribution-gradle:4.0.0')apply plugin: 'com.google.firebase.appdistribution'firebaseAppDistribution {
appId="1:1234567890:android:321abc456def7890",
artifactType="APK"
releaseNotesFile=""
serviceCredentialsFile="app/service-account-credentials.json"
groupsFile=""
}How to Distribute?
Last updated