Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
add release to build
  • Loading branch information
jclark118 authored Oct 30, 2023
1 parent 86c5934 commit 53163a4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion mapcache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ android {
versionName '2.1.11'
multiDexEnabled true
}
signingConfigs {
release {
if (project.hasProperty('KEYSTORE')) {
storeFile file(KEYSTORE)
storePassword KEYSTORE_PASSWORD
keyAlias KEY_ALIAS
keyPassword KEY_PASSWORD
} else {
println 'no keystore property configured'
}
}
}
buildTypes {
release {
minifyEnabled false
Expand Down Expand Up @@ -123,4 +135,4 @@ configurations.all {
}
}

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android'

0 comments on commit 53163a4

Please sign in to comment.