-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
2 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected] 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" | ||
|