Skip to content

Commit 66cc036

Browse files
authored
Merge pull request #14 from rn-pn-sn/main
# what's new: ## C++: - Added xDL lib - KittyMemory lib updated - Macros.h & Utils.cpp: - - _xDL sym resolver added_ - - _HOOKs reworked using Dobby_ - - _INST added (Dobby)_ - - _PATCHs reworked: DobbyKitty / Kitty implementations_ - - _added relative patches (rPATCH, rRESTORE, rPATCH_SWITCH)_ - - _asm support added (KittyMemory::Keystone assembler)_ - - _added dynamic asm patches (dPATCH, dRESTORE, d/drPATCH_SWITCH)_ - - _Macro defines have been optimized_ - Init() from Setup migrated to Menu for convenience - Updated Dialog window JNI (link btn support & timer) - And64InlineHook and Substrate libs replaced by Dobby - get_device_api_level_inlines.h replaced by JNI get_api_sdk - Other minor changes ## Java: - CrashHandler updated: - - _more debug info_ - - _save path has been changed to: android/media/PACKAGE/files/LOG_DIR for all devices_ - - _clear old crash logs (keep last 5)_ - Added DialogHelper - Other minor changes ## Project settings: - Updated to SDK 36 - Upgraded gradle - Other minor changes
2 parents fa8c8e8 + 2af31f6 commit 66cc036

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+8018
-4683
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Introduction
33
![GitHub](https://img.shields.io/github/license/LGLTeam/Android-Mod-Menu?style=flat-square)
44

5-
Floating mod menu for il2cpp and other native android games. KittyMemory, MSHook, And64InlineHook and basic string obfuscator (AY obfuscator) included. Assets are stored as base64 in cpp and does not need to be stored under assets folder.
5+
Floating mod menu for il2cpp and other native android games. KittyMemory, Dobby, xDL and basic string obfuscator (AY obfuscator) included. Assets are stored as base64 in cpp and does not need to be stored under assets folder.
66

7-
Support Android 4.4.x up to Android 15. ARMv7 and ARM64 are supported.
7+
Support Android 4.4.x up to Android 16. ARMv7 and ARM64 are supported.
88

99
![](Intro.gif)
1010

@@ -23,11 +23,12 @@ If you have an issue with Hooking and game crashes, you should go to the **suppo
2323
# Credits
2424
Thanks to the following individuals whose code helped me develop this mod menu
2525

26-
* Octowolve/Escanor - Mod menu: https://github.com/z3r0Sec/Substrate-Template-With-Mod-Menu and Hooking: https://github.com/z3r0Sec/Substrate-Hooking-Example
26+
* Octowolve/Escanor - Mod menu: https://github.com/z3r0Sec/Substrate-Template-With-Mod-Menu
2727
* VanHoevenTR - Mod menu - https://github.com/LGLTeam/VanHoevenTR_Android_Mod_Menu
2828
* MrIkso - First mod menu template https://github.com/MrIkso/FloatingModMenu
2929
* MJx0 A.K.A Ruit - https://github.com/MJx0/KittyMemory
30-
* Rprop - https://github.com/Rprop/And64InlineHook
30+
* hexhacking - https://github.com/hexhacking/xDL
31+
* jmpews - https://github.com/jmpews/Dobby
3132
* And everyone else who provided input and contributions to this project!
3233

3334
# License

app/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 34
4+
compileSdkVersion 36
55
defaultConfig {
66
applicationId "com.android.support"
77
minSdkVersion 21
8-
targetSdkVersion 34
8+
targetSdkVersion 36
99
versionCode 1
10-
versionName "4.0"
10+
versionName "5.3"
1111
ndk {
12+
//noinspection ChromeOsAbiSupport
1213
abiFilters 'armeabi-v7a', 'arm64-v8a'
1314
}
1415
}
16+
android.buildFeatures.buildConfig = true
1517
buildTypes {
1618
release {
1719
shrinkResources true

0 commit comments

Comments
 (0)