Don't set debuggable. If you really need to modify it, do it locally, don't commit that.

This commit is contained in:
Bradlee Speice 2014-12-05 23:13:07 -05:00
parent 22f9fc2e26
commit 7380078942
2 changed files with 0 additions and 5 deletions

View File

@ -32,10 +32,6 @@ android {
sourceSets { sourceSets {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
// TODO: Fix up lint - remove the hard-coded android:debuggable
lintOptions {
abortOnError false
}
} }
dependencies { dependencies {

View File

@ -8,7 +8,6 @@
<application <application
android:name=".MinimalBible" android:name=".MinimalBible"
android:allowBackup="true" android:allowBackup="true"
android:debuggable="false"
android:icon="@drawable/ic_launcher" android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">