Tool AIDE - IDE for Android Java C++ (Modded & NDK included)

I have a .so menu, and what's the next step? How do I get the game to load the menu?

Once you have your mod menu so file...
1: decompile game
2: put your so file in the relevant 32 bit or 64 bit directory, lib/armeabi-v7a or lib/arm64-v8a
3: edit AndroidManifest.xml and add the mod menu overlay permission...
Code:
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
4: Add the mod menu service also to the manifest...
Code:
<service android:name="uk.lgl.modmenu.FloatingModMenuService" android:enabled="true" android:exported="false" android:stopWithTask="true"/>
5: edit the games main activity xml file and in the OnCreate function, add this line to load the mod menu...
Code:
invoke-static {p0}, Luk/lgl/MainActivity;->Start(Landroid/content/Context;)V
6: compile game
7: zip align apk
8:: sign apk

follow any modding tutorial on here for more detailed instructions
 
Back
Top Bottom