Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions formulus/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ android {
keyPassword = 'android'
}
release {
if (keystorePropertiesFile.exists()) {
if (keystorePropertiesFile.exists() && keystoreProperties['FORMULUS_RELEASE_STORE_FILE']) {
// Use rootProject.file() to resolve path relative to android/ directory
storeFile = rootProject.file(keystoreProperties['FORMULUS_RELEASE_STORE_FILE'])
storePassword = keystoreProperties['FORMULUS_RELEASE_STORE_PASSWORD']
Expand All @@ -124,7 +124,7 @@ android {
signingConfig = signingConfigs.debug
}
release {
signingConfig = keystorePropertiesFile.exists() ? signingConfigs.release : signingConfigs.debug
signingConfig = (keystorePropertiesFile.exists() && keystoreProperties['FORMULUS_RELEASE_STORE_FILE']) ? signingConfigs.release : signingConfigs.debug
minifyEnabled = enableProguardInReleaseBuilds
proguardFiles = [getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"]
}
Expand Down
Empty file modified formulus/android/gradlew
100644 → 100755
Empty file.