diff options
author | cyBerta <cyberta@riseup.net> | 2021-11-28 13:58:03 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-11-28 13:58:03 +0100 |
commit | 11fa383310cbcc1ffea6ff7cfbddd8b639c7697f (patch) | |
tree | 24986b299d8667f8cdf0b10c460f4857341b1352 | |
parent | f961125f66b8a027acf5fca25636b7c576926f36 (diff) |
we'll use prepareForDistribution.sh for signing, remove signingConfigs from build.gradle
-rw-r--r-- | app/build.gradle | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/app/build.gradle b/app/build.gradle index 4e58ae54..2452874f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -61,15 +61,6 @@ android { } } - signingConfigs { - release { - storeFile project.hasProperty('storeFileProperty') ? file(storeFileProperty) : null - storePassword project.hasProperty('storePasswordProperty') ? storePasswordProperty : "" - keyAlias project.hasProperty('keyAliasProperty') ? keyAliasProperty : "" - keyPassword project.hasProperty('keyPasswordProperty') ? keyPasswordProperty : "" - } - } - flavorDimensions "branding", "implementation", "abi" productFlavors { productFlavors.all { @@ -223,8 +214,6 @@ android { } release { //runProguard true - if(signingConfigs.contains(release)) - signingConfig signingConfigs.release.isSigningReady() ? signingConfigs.release : signingConfigs.debug //ndk.debugSymbolLevel = "full" //minifyEnabled = true //shrinkResources true |