1
0
Fork 0

Modified APK location and signing key properties.

This commit is contained in:
Jonathan Chan 2016-10-10 12:52:10 -07:00
parent 2794a52153
commit 17fe9fa700
5 changed files with 11 additions and 9 deletions

4
.gitignore vendored
View File

@ -8,4 +8,6 @@
/captures
/projectFilesBackup
gradle*
/gradle
/gradle
/app/build
keystore.properties

View File

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

View File

@ -1,3 +0,0 @@
/generated
/intermediates
/tmp

View File

@ -1,3 +0,0 @@
/logs
/mapping
*.*ml