Merge pull request #602 from HabitRPG/debug

have debug and store version without uninstall the other
This commit is contained in:
Phillip Thelen 2016-08-22 18:25:50 +02:00 committed by GitHub
commit ae643b4664
3 changed files with 7 additions and 2 deletions

View file

@ -163,7 +163,7 @@
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.habitrpg.android.habitica.fileprovider"
android:authorities="@string/content_provider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data

View file

@ -170,11 +170,17 @@ android {
// Disable fabric build ID generation for debug builds
ext.enableCrashlytics = false
multiDexEnabled true
resValue "string", "content_provider", "com.habitrpg.android.habitica.debug.fileprovider"
resValue "string", "app_name", "Habitica Debug"
}
release {
signingConfig signingConfigs.release
debuggable false
multiDexEnabled true
resValue "string", "content_provider", "com.habitrpg.android.habitica.fileprovider"
resValue "string", "app_name", "Habitica"
}
}

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Habitica</string>
<string name="action_refresh">Refresh</string>
<string name="XP_default">Experience</string>
<string name="HP_default">Health</string>