forked from firka/student-legacy
read debug keystore properties from file
This commit is contained in:
parent
b4df085936
commit
6dd2fa100a
@ -29,6 +29,10 @@ def keystoreProperties = new Properties()
|
|||||||
def keystorePropertiesFile = rootProject.file("key.properties")
|
def keystorePropertiesFile = rootProject.file("key.properties")
|
||||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||||
|
|
||||||
|
def debugKeystoreProperties = new Properties()
|
||||||
|
def debugKeystorePropertiesFile = rootProject.file("debugkey.properties")
|
||||||
|
debugKeystoreProperties.load(new FileInputStream(debugKeystorePropertiesFile))
|
||||||
|
|
||||||
android {
|
android {
|
||||||
ndkVersion "25.1.8937393"
|
ndkVersion "25.1.8937393"
|
||||||
|
|
||||||
@ -67,7 +71,7 @@ android {
|
|||||||
debug {
|
debug {
|
||||||
keyAlias "androiddebugkey"
|
keyAlias "androiddebugkey"
|
||||||
keyPassword "android"
|
keyPassword "android"
|
||||||
storeFile file("/home/reinerrego/debug.keystore")
|
storeFile file(debugKeystoreProperties['storeFile'])
|
||||||
storePassword "android"
|
storePassword "android"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user