aboutsummaryrefslogtreecommitdiff
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2024-09-29 18:01:04 +0530
committerAkshay Nair <phenax5@gmail.com>2024-09-29 18:01:04 +0530
commit365f18b617fd0a6954ee832138762d14d4dd6539 (patch)
treea1d91d99ebe1042f5c9a83e17e1a952dddd0692e /android/app/src/main/AndroidManifest.xml
parent0b3257997a97088e22c9b6881c20a4807422ec05 (diff)
downloaddaft-launcher-365f18b617fd0a6954ee832138762d14d4dd6539.tar.gz
daft-launcher-365f18b617fd0a6954ee832138762d14d4dd6539.zip
Fix intent filters
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r--android/app/src/main/AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index e8b319e..9bae7a2 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -18,8 +18,10 @@
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"/>
+ <category android:name="android.intent.category.HOME" />
+ <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>