flutter: android: storeFile judge keystoreProperties null

Try to fix:
Build file '/builds/calcitem/fdroiddata/build/com.calcitem.sanmill/src/ui/flutter_app/android/app/build.gradle' line: 71
* What went wrong:
A problem occurred evaluating project ':app'.
> path may not be null or empty string. path='null'

Reference:
https://gitlab.com/TheOneWithTheBraid/xournalpp_mobile/-/blob/master/android/app/build.gradle
This commit is contained in:
Calcitem 2021-05-05 03:12:55 +08:00
parent a8cec3c95f
commit cf50266211
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ android {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}

View File

@ -68,7 +68,7 @@ android {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}