【安卓逆向】小白到大佬:游戲MOD菜單內(nèi)置是如何練成的~

<!-- 此應用可顯示在其他應用上方 -->
<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" />
標簽: