Nightly build: upload the application bundle to Firebase instead of the universal APK.

This commit is contained in:
Benoit Marty 2023-07-21 10:24:11 +02:00
parent 80bd7e11ea
commit 0fd5032dba
2 changed files with 9 additions and 10 deletions

View file

@ -124,11 +124,8 @@ android {
}
firebaseAppDistribution {
artifactType = "APK"
// We upload the universal APK to fix this error:
// "App Distribution found more than 1 output file for this variant.
// Please contact firebase-support@google.com for help using APK splits with App Distribution."
artifactPath = "$rootDir/app/build/outputs/apk/nightly/app-universal-nightly.apk"
artifactType = "AAB"
artifactPath = "$rootDir/app/build/outputs/bundle/nightly/app-nightly.aab"
// This file will be generated by the GitHub action
releaseNotesFile = "CHANGES_NIGHTLY.md"
groups = "external-testers"