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:
parent
a8cec3c95f
commit
cf50266211
|
@ -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']
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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']
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue