Update configs
This commit is contained in:
parent
5fc334568c
commit
9048b96612
1 changed files with 18 additions and 5 deletions
|
@ -56,13 +56,26 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
signingConfig android.signingConfigs.debug
|
signingConfig signingConfigs.development
|
||||||
}
|
|
||||||
nativeDebug {
|
|
||||||
signingConfig android.signingConfigs.debug
|
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
signingConfig android.signingConfigs.debug
|
signingConfig signingConfigs.publishing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
development {
|
||||||
|
storeFile file("../keystores/debug.keystore")
|
||||||
|
storePassword "android"
|
||||||
|
keyAlias "androiddebugkey"
|
||||||
|
keyPassword "android"
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
storeFile file("/var/lib/jenkins/osmand_key")
|
||||||
|
storePassword System.getenv("OSMAND_APK_PASSWORD")
|
||||||
|
keyAlias "osmand"
|
||||||
|
keyPassword System.getenv("OSMAND_APK_PASSWORD")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue