Skip to content

Commit

Permalink
Remove release keystore
Browse files Browse the repository at this point in the history
Add Ninja's fabric key for trace the usage
  • Loading branch information
ninjachen committed Aug 18, 2017
1 parent ed801dc commit 097ce91
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,18 @@ android {

signingConfigs {
// Uncomment and set values and then this will work
debug {
storeFile file(ANDROID_KEYSTORE_PATH)
storePassword ANDROID_STORE_PASS
keyAlias ANDROID_KEY_ALIAS
keyPassword ANDROID_KEY_PASS
}
release {
storeFile file(ANDROID_KEYSTORE_PATH)
storePassword ANDROID_STORE_PASS
keyAlias ANDROID_KEY_ALIAS
keyPassword ANDROID_KEY_PASS
}
// debug {
// storeFile file(ANDROID_KEYSTORE_PATH)
// storePassword ANDROID_STORE_PASS
// keyAlias ANDROID_KEY_ALIAS
// keyPassword ANDROID_KEY_PASS
// }
// release {
// storeFile file(ANDROID_KEYSTORE_PATH)
// storePassword ANDROID_STORE_PASS
// keyAlias ANDROID_KEY_ALIAS
// keyPassword ANDROID_KEY_PASS
// }
}

lintOptions {
Expand All @@ -100,13 +100,13 @@ android {
debug {
applicationIdSuffix '.debug'
minifyEnabled false
signingConfig signingConfigs.debug
// signingConfig signingConfigs.debug
// zipAlign false // this is default for debug
}
release {
minifyEnabled true
proguardFile '../proguard.cfg'
signingConfig signingConfigs.release
// signingConfig signingConfigs.release
// zipAlign true // this is default for release
// testPackageName 'com.zeonic.ykt.tests'
// testInstrumentationRunner 'android.test.InstrumentationTestRunner' // this is the default
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Sat May 27 12:43:59 CST 2017
crashlyticsApiKey=
crashlyticsApiKey=3e50b5a2373f10c7c788fca7ebbbd306972d364d
systemProp.http.proxyHost=127.0.0.1
ANDROID_KEY_ALIAS=zeonic_icity
ANDROID_STORE_PASS=
Expand Down

0 comments on commit 097ce91

Please sign in to comment.