Skip to content

Commit c8b9903

Browse files
authored
fix(core): remove dev menu app icon
Issue #, if available: 794 Description of changes: Removes the intent filter from the developer menu activity in the AndroidManifest to avoid creating a second app icon for the developer menu when running the app.
1 parent c6bd56f commit c8b9903

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

core/src/main/AndroidManifest.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,7 @@
1919
<uses-permission android:name="android.permission.INTERNET" />
2020
<application>
2121
<activity android:name="com.amplifyframework.devmenu.DeveloperMenuActivity"
22-
android:theme="@style/OverlayActivity">
23-
<intent-filter>
24-
<action android:name="android.intent.action.MAIN" />
25-
<category android:name="android.intent.category.LAUNCHER" />
26-
</intent-filter>
27-
</activity>
22+
android:theme="@style/OverlayActivity" />
2823
</application>
2924
</manifest>
3025

0 commit comments

Comments
 (0)