【安卓逆向】小白到大佬:游戏MOD菜单内置是如何练成的~

<!-- 此应用可显示在其他应用上方 -->
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
添加
<activity
android:name="com.android.support.MainActivity"
android:exported="true">
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="com.android.support.Launcher"
android:enabled="true"
android:exported="true"
android:stopWithTask="true" />
删除<category
android:name="android.intent.category.LAUNCHER" />