Revert change from #941, upload APK to Firebase App Distribution for now.

We need a matching and released PlayStore application to be able to upload an AAB, and we do not have that for now.
This commit is contained in:
Benoit Marty 2023-07-21 16:19:16 +02:00
parent 1a1d4c2957
commit f0874fd773
2 changed files with 14 additions and 8 deletions

View file

@ -124,8 +124,13 @@ android {
}
firebaseAppDistribution {
artifactType = "AAB"
artifactPath = "$rootDir/app/build/outputs/bundle/nightly/app-nightly.aab"
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"