-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #941 from vector-im/feature/bma/versionCode
Version code
- Loading branch information
Showing
4 changed files
with
40 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,9 @@ jobs: | |
- uses: mobile-dev-inc/[email protected] | ||
with: | ||
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }} | ||
app-file: app/build/outputs/apk/debug/app-universal-debug.apk | ||
# Doc says (https://github.com/mobile-dev-inc/action-maestro-cloud#android): | ||
# app-file should point to an x86 compatible APK file, so upload the x86_64 one (much smaller than the universal APK). | ||
app-file: app/build/outputs/apk/debug/app-x86_64-debug.apk | ||
env: | | ||
USERNAME=maestroelement | ||
PASSWORD=${{ secrets.MATRIX_MAESTRO_ACCOUNT_PASSWORD }} | ||
|
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,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 [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" | ||
|
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