aboutsummaryrefslogtreecommitdiff
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-03 23:38:07 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-03 23:38:07 +0530
commitcee800d5105b359d38681251fd2c997e1f84220d (patch)
tree20b2fab137af5df95a381231539a66edf57e0cc0 /android/app/src/main/AndroidManifest.xml
parent191186a0e3a315ca3755ed91c336fe6119f4d7d7 (diff)
downloaddaft-launcher-cee800d5105b359d38681251fd2c997e1f84220d.tar.gz
daft-launcher-cee800d5105b359d38681251fd2c997e1f84220d.zip
Fixes build issue for shared preferences
Diffstat (limited to '')
-rw-r--r--android/app/src/main/AndroidManifest.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index fcffffb..3eb3424 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -5,10 +5,10 @@
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.REQUEST_DELETE_PACKAGES" />
<application
android:name="io.flutter.app.FlutterApplication"
- android:label="owyn"
+ android:label="Owyn launcher"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
@@ -36,8 +36,8 @@
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
- <!--<action android:name="android.intent.action.DELETE" />-->
- <!--<action android:name="android.intent.action.UNINSTALL_PACKAGE" />-->
+ <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" />