[android] Fix beta uploading

Follow up ccceea0

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2023-09-05 08:21:08 +03:00
parent 68775e3001
commit 92c7f58085
2 changed files with 4 additions and 4 deletions

View file

@ -70,7 +70,7 @@ jobs:
run: |
cmake --version
ninja --version
gradle -x lint -x lintVitalGoogleBeta assembleGoogleBeta uploadCrashlyticsSymbolFileGoogleBeta uploadCrashlyticsMappingFileGoogleBeta
./gradlew -Pfirebase -x lint -x lintVitalGoogleBeta assembleGoogleBeta uploadCrashlyticsSymbolFileGoogleBeta uploadCrashlyticsMappingFileGoogleBeta
- name: Upload beta apk to App Distribution
shell: bash

View file

@ -24,7 +24,7 @@ buildscript {
ext.googleMobileServicesEnabled = taskName.contains('google') || taskName.contains('huawei') || taskName.contains('web')
// Enable Firebase for all beta flavors except fdroid only if google-services.json exists.
def googleFirebaseServicesDefault = isBeta && !isFdroid && file('app/google-services.json').exists()
def googleFirebaseServicesDefault = isBeta && !isFdroid && file("$projectDir/google-services.json").exists()
// Add a parameter to force Firebase.
ext.googleFirebaseServicesEnabled = project.hasProperty('firebase') ?: googleFirebaseServicesDefault
@ -368,7 +368,7 @@ android {
// Use the last commit message for the release notes.
releaseNotes = getCommitMessage()
groups = "qa" // Notify only selected people.
serviceCredentialsFile = "app/firebase-app-distribution.json"
serviceCredentialsFile = "$projectDir/firebase-app-distribution.json"
}
}
}
@ -457,7 +457,7 @@ play {
huaweiPublish {
instances {
huaweiRelease {
credentialsPath = "$rootDir/huawei-appgallery.json"
credentialsPath = "$projectDir/huawei-appgallery.json"
buildFormat = 'aab'
deployType = 'draft' // confirm manually
releaseNotes = []