├── .gitignore ├── LICENSE ├── README-MOBILE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── uk │ │ └── lgl │ │ ├── MainActivity.java │ │ └── modmenu │ │ ├── FloatingModMenuService.java │ │ ├── Logcat.java │ │ └── Preferences.java │ ├── jni │ ├── And64InlineHook │ │ ├── And64InlineHook.cpp │ │ ├── And64InlineHook.hpp │ │ ├── LICENSE │ │ └── README.md │ ├── Android.mk │ ├── Application.mk │ ├── Includes │ │ ├── Logger.h │ │ ├── Utils.h │ │ └── obfuscate.h │ ├── KittyMemory │ │ ├── KittyMemory.cpp │ │ ├── KittyMemory.h │ │ ├── KittyUtils.cpp │ │ ├── KittyUtils.h │ │ ├── MemoryBackup.cpp │ │ ├── MemoryBackup.h │ │ ├── MemoryPatch.cpp │ │ └── MemoryPatch.h │ ├── Main.cpp │ ├── Menu.h │ ├── Stuff │ │ └── ProtectString.h │ ├── Substrate │ │ ├── Buffer.hpp │ │ ├── CydiaSubstrate.h │ │ ├── SubstrateARM.hpp │ │ ├── SubstrateDebug.cpp │ │ ├── SubstrateDebug.hpp │ │ ├── SubstrateHook.cpp │ │ ├── SubstrateHook.h │ │ ├── SubstrateLog.hpp │ │ ├── SubstratePosixMemory.cpp │ │ ├── SubstrateX86.hpp │ │ ├── SymbolFinder.cpp │ │ ├── SymbolFinder.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ └── table64.h │ └── Toast.h │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── capsule.xml │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── activity_main2.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-v21 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README-MOBILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/README-MOBILE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/uk/lgl/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/java/uk/lgl/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/uk/lgl/modmenu/FloatingModMenuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/java/uk/lgl/modmenu/FloatingModMenuService.java -------------------------------------------------------------------------------- /app/src/main/java/uk/lgl/modmenu/Logcat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/java/uk/lgl/modmenu/Logcat.java -------------------------------------------------------------------------------- /app/src/main/java/uk/lgl/modmenu/Preferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/java/uk/lgl/modmenu/Preferences.java -------------------------------------------------------------------------------- /app/src/main/jni/And64InlineHook/And64InlineHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/And64InlineHook/And64InlineHook.cpp -------------------------------------------------------------------------------- /app/src/main/jni/And64InlineHook/And64InlineHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/And64InlineHook/And64InlineHook.hpp -------------------------------------------------------------------------------- /app/src/main/jni/And64InlineHook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/And64InlineHook/LICENSE -------------------------------------------------------------------------------- /app/src/main/jni/And64InlineHook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/And64InlineHook/README.md -------------------------------------------------------------------------------- /app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /app/src/main/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Application.mk -------------------------------------------------------------------------------- /app/src/main/jni/Includes/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Includes/Logger.h -------------------------------------------------------------------------------- /app/src/main/jni/Includes/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Includes/Utils.h -------------------------------------------------------------------------------- /app/src/main/jni/Includes/obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Includes/obfuscate.h -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/KittyMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/KittyMemory.h -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/KittyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/KittyUtils.h -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/MemoryBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/MemoryBackup.h -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /app/src/main/jni/KittyMemory/MemoryPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/KittyMemory/MemoryPatch.h -------------------------------------------------------------------------------- /app/src/main/jni/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Main.cpp -------------------------------------------------------------------------------- /app/src/main/jni/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Menu.h -------------------------------------------------------------------------------- /app/src/main/jni/Stuff/ProtectString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Stuff/ProtectString.h -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/Buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/Buffer.hpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/CydiaSubstrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/CydiaSubstrate.h -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateARM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateARM.hpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateDebug.cpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateDebug.hpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateHook.cpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateHook.h -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateLog.hpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstratePosixMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstratePosixMemory.cpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SubstrateX86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SubstrateX86.hpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SymbolFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SymbolFinder.cpp -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/SymbolFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/SymbolFinder.h -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/hde64.c -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/hde64.h -------------------------------------------------------------------------------- /app/src/main/jni/Substrate/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Substrate/table64.h -------------------------------------------------------------------------------- /app/src/main/jni/Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/jni/Toast.h -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/capsule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/drawable/capsule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlternativeAlse/Alternative-Android-Mod-Menu/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------