Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Yunitsky <yunik@mapswithme.com>2015-09-10 18:33:47 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:04:19 +0300
commitb5d53d6aeb2bd26290eac8b1aeecd33dc4d8ff31 (patch)
tree4464f7bf23f72be19bbd3b32d5054dd3e9af9990 /android
parent32af80b286452484465ed9e6ba4e343015460629 (diff)
[android] Added debug keystore to avoid errors when reinstalling debug version on devices.
Diffstat (limited to 'android')
-rw-r--r--android/build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/android/build.gradle b/android/build.gradle
index f10f596de0..cf6f608261 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -198,6 +198,13 @@ android {
keyPassword '***REMOVED***'
}
+ mapswithmeDebug {
+ storeFile file('../tools/android/debug.keystore')
+ storePassword '12345678'
+ keyAlias 'debug'
+ keyPassword '12345678'
+ }
+
yopme {
storeFile file('YopMe/key/android.keystore')
storePassword '***REMOVED***'
@@ -212,6 +219,7 @@ android {
versionNameSuffix '-debug'
jniDebuggable true // Enable jni debug build
zipAlignEnabled true
+ signingConfig signingConfigs.mapswithmeDebug
android.sourceSets.debug.setRoot('flavors/debug')
}