Android: Fix a bug making Input Overlay config screen only work in release OR debug builds, but not in both.

This commit is contained in:
sigmabeta
2015-06-16 15:42:11 -04:00
parent 82dea170cf
commit 0c993ad4a9
4 changed files with 10 additions and 1 deletions

View File

@ -11,6 +11,7 @@ android {
}
defaultConfig {
// TODO If this is ever modified, change application_id in strings.xml
applicationId "org.dolphinemu.dolphinemu"
minSdkVersion 21
targetSdkVersion 21
@ -43,6 +44,7 @@ android {
// Signed by debug key disallowing distribution on Play Store.
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
debug {
// TODO If this is ever modified, change application_id in debug/strings.xml
applicationIdSuffix ".debug"
versionNameSuffix '-debug'
jniDebuggable true