mirror of
https://github.com/syncthing/syncthing-android.git
synced 2025-01-11 04:25:53 +00:00
Add signingconfig
This commit is contained in:
parent
7b54ce59b1
commit
01cc786263
1 changed files with 12 additions and 0 deletions
12
build.gradle
12
build.gradle
|
@ -53,11 +53,23 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
release {
|
||||||
|
storeFile file(System.getenv("key.store"))
|
||||||
|
storePassword System.getenv("key.store.password")
|
||||||
|
keyAlias System.getenv("key.alias")
|
||||||
|
keyPassword System.getenv("key.alias.password")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix ".debug"
|
applicationIdSuffix ".debug"
|
||||||
debuggable true
|
debuggable true
|
||||||
}
|
}
|
||||||
|
release {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
|
|
Loading…
Reference in a new issue