[android] Now it’s possible to install debug version together with production or beta

This commit is contained in:
Alex Zolotarev 2014-06-25 16:03:53 -10:00 committed by Alex Zolotarev
parent d1778fc5db
commit 89fcaddd24
2 changed files with 6 additions and 0 deletions

View file

@ -153,6 +153,7 @@ android {
versionNameSuffix '-debug'
jniDebugBuild true // Enable jni debug build
zipAlign true
android.sourceSets.debug.setRoot('flavors/debug')
}
release {

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<!-- Debug manifest doesn't contain sharedUser values to avoid installation conflicts with production versions -->
</manifest>