mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-12-23 11:21:29 +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 {
|
||||
debug {
|
||||
applicationIdSuffix ".debug"
|
||||
debuggable true
|
||||
}
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
productFlavors {
|
||||
|
|
Loading…
Reference in a new issue