diff options
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 3eb3424..a8c7113 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,11 +1,13 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" package="io.github.phenax.owyn"> <!-- io.flutter.app.FlutterApplication is an android.app.Application that calls FlutterMain.startInitialization(this); in its onCreate method. In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> - <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" /> + <uses-permission android:name="android.permission.DELETE_PACKAGES" tools:ignore="ProtectedPermissions" /> + <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES"/> <application android:name="io.flutter.app.FlutterApplication" android:label="Owyn launcher" @@ -36,8 +38,6 @@ /> <intent-filter> <action android:name="android.intent.action.MAIN"/> - <action android:name="android.intent.action.DELETE" /> - <action android:name="android.intent.action.UNINSTALL_PACKAGE" /> <category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.HOME" /> <category android:name="android.intent.category.DEFAULT" /> |
