Skip to content

Commit

Permalink
Added signing configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Dec 23, 2015
1 parent 71639d0 commit e035060
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CongressRoutePlanner/app/build.gradle
Expand Up @@ -12,10 +12,19 @@ android {
versionName "1.0"
buildConfigField "String", "WEB_URL", "\"https://c3nav.de\""
}
signingConfigs {
release {
storeFile file("../../c3nav.keystore")
storePassword System.getenv("KSTOREPWD")
keyAlias "c3nav"
keyPassword System.getenv("KSTOREPWD")
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
}
Expand Down

0 comments on commit e035060

Please sign in to comment.