android: set application debuggable

This debuggable flag should not be set with release builds. Generally, graddle
is taking care of that.
This commit is contained in:
Thomas Guillem 2020-03-22 14:34:16 +01:00 committed by Max Kellermann
parent 35dbc1a90c
commit 7342ae2e33
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application android:allowBackup="true" <application android:allowBackup="true"
android:debuggable="true"
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"
android:icon="@drawable/icon" android:icon="@drawable/icon"
android:banner="@drawable/icon" android:banner="@drawable/icon"