1
0
Fork 0
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:
Lode Hoste 2015-03-21 00:56:59 +01:00
parent 7b54ce59b1
commit 01cc786263

View file

@ -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 {