Skip to content

Commit

Permalink
signing updates
Browse files Browse the repository at this point in the history
  • Loading branch information
LivingWithHippos committed Sep 22, 2020
1 parent 33c61fd commit 276be90
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,6 @@ if (keyPropertiesFile.exists()) {

android {

signingConfigs {
release {
storeFile file(keyProperties['storeFile'])
storePassword keyProperties['storePassword']
keyAlias keyProperties['releaseKeyAlias']
keyPassword keyProperties['releaseKeyPassword']
}
debug {
storeFile file(keyProperties['storeFile'])
storePassword keyProperties['storePassword']
keyAlias keyProperties['debugKeyAlias']
keyPassword keyProperties['debugKeyPassword']
}
}

compileSdkVersion 30
buildToolsVersion "30.0.1"

Expand Down Expand Up @@ -60,6 +45,15 @@ android {
exclude 'META-INF/*.properties'
}

signingConfigs {
release {
storeFile file(keyProperties['releaseStoreFile'])
storePassword keyProperties['releaseStorePassword']
keyAlias keyProperties['keyAlias']
keyPassword keyProperties['releaseStorePassword']
}
}

buildTypes {

debug {
Expand All @@ -72,6 +66,8 @@ android {

signingConfig signingConfigs.release

debuggable false

// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled true
Expand Down

0 comments on commit 276be90

Please sign in to comment.