Skip to content

Commit 2e0d8a5

Browse files
fix: Allow opening helper from device system app when launcher icon is hidden
1 parent 21523c2 commit 2e0d8a5

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@
1010
<activity
1111
android:name=".MainActivity"
1212
android:theme="@style/AppTheme"
13-
android:exported="true" />
13+
android:exported="true">
14+
<!-- Always allow opening the helper from the device system app list app info. -->
15+
<intent-filter>
16+
<action android:name="android.intent.action.MAIN" />
17+
<category android:name="android.intent.category.INFO" />
18+
</intent-filter>
19+
</activity>
1420

1521
<!--
1622
Carries the launcher icon, disabled on purpose: since Android 10 the system

0 commit comments

Comments
 (0)