Modified APK location and signing key properties.
This commit is contained in:
parent
2794a52153
commit
17fe9fa700
|
@ -8,4 +8,6 @@
|
|||
/captures
|
||||
/projectFilesBackup
|
||||
gradle*
|
||||
/gradle
|
||||
/gradle
|
||||
/app/build
|
||||
keystore.properties
|
Binary file not shown.
|
@ -1,12 +1,16 @@
|
|||
apply plugin: 'com.android.application'
|
||||
|
||||
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||
def keystoreProperties = new Properties()
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
|
||||
android {
|
||||
signingConfigs {
|
||||
config {
|
||||
keyAlias 'AndroidKey'
|
||||
keyPassword keystoreProperties['password']
|
||||
storeFile file('C:/Users/Jonathan/Documents/Projects/Keystores/android.jks')
|
||||
keyPassword 'jhwc2214'
|
||||
storePassword 'jhwc2214'
|
||||
storePassword keystoreProperties['password']
|
||||
}
|
||||
}
|
||||
compileSdkVersion 24
|
||||
|
@ -24,6 +28,8 @@ android {
|
|||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
signingConfig signingConfigs.config
|
||||
}
|
||||
debug {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
/generated
|
||||
/intermediates
|
||||
/tmp
|
|
@ -1,3 +0,0 @@
|
|||
/logs
|
||||
/mapping
|
||||
*.*ml
|
Loading…
Reference in New Issue