diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-09-29 13:19:11 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-09-29 16:16:40 +0530 |
| commit | bac973fb3d933c383cc69612c7ffc45ece837dde (patch) | |
| tree | ffe6dc906c4108dd38d24be69f89a6c5e3a50347 /android/app | |
| parent | bcf8a0ce1a3f4ccab01737741a22ecaf968daaff (diff) | |
| download | daft-launcher-bac973fb3d933c383cc69612c7ffc45ece837dde.tar.gz daft-launcher-bac973fb3d933c383cc69612c7ffc45ece837dde.zip | |
Switch to jotai atom with storage + suspense for favorites list
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 2a2071e..e8b319e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,4 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android"> - <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" /> @@ -19,8 +18,8 @@ android:windowSoftInputMode="adjustResize" android:exported="true"> <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> |
