1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-11 04:25:53 +00:00

Removed unnecessary singingConfig from build.gradle

This commit is contained in:
Felix Ableitner 2016-10-21 16:53:01 +09:00
parent 8ffae81f92
commit 23f7053e44

View file

@ -47,28 +47,10 @@ android {
testFunctionalTest true
}
signingConfigs {
release {
if (System.getenv("key_alias")) {
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 {
buildTypes.debug {
applicationIdSuffix ".debug"
debuggable true
}
release {
if (System.getenv("key_alias")) {
signingConfig signingConfigs.release
}
}
}
productFlavors {
x86 {