Skip to content

Commit

Permalink
3.0
Browse files Browse the repository at this point in the history
- Fixed crash
- Menu can be launched without permission. Only works with Activity context. Thanks Darkside
- Permission check and start service moved to JNI. Thanks MrDarkRX
- Removed logcat, it's useless now. I'm looking a way to save log when an app has crashed
- Changed package name to com.android.support
- Removed ndkVersion, it's not needed
- Target SDK changed to 32
- Updated macros. Please read https://github.com/LGLTeam/Android-Mod-Menu/wiki/Usage again
  • Loading branch information
LGLTeam committed Feb 1, 2022
1 parent 064a7e9 commit e235d57
Show file tree
Hide file tree
Showing 40 changed files with 660 additions and 2,731 deletions.
260 changes: 0 additions & 260 deletions README-MOBILE.md

This file was deleted.

7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Or download Releases here https://github.com/LGLTeam/Android-Mod-Menu/releases

https://github.com/LGLTeam/Android-Mod-Menu/wiki

# Credits/Acknowledgements
# Credits
Thanks to the following individuals whose code helped me develop this mod menu

* Octowolve/Escanor - Mod menu: https://github.com/z3r0Sec/Substrate-Template-With-Mod-Menu and Hooking: https://github.com/z3r0Sec/Substrate-Hooking-Example
Expand All @@ -34,3 +34,8 @@ Thanks to the following individuals whose code helped me develop this mod menu

# License
**GNU General Public License 3**

# Disclaimer
This project is for Educational Use only. We do not condone this project being used to gain an advantage against other people. This project was made for fun

While commecial use/selling is allowed, we still strongly refrain you from buying any source codes on Telegram even if the author can be trusted, there is always a risk getting scammed. We will not be responsible for that. This project is always FREE to use
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
compileSdkVersion 32
defaultConfig {
applicationId "com.android.support"
minSdkVersion 19
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "2.9"
versionName "3.0"
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86'
}
Expand All @@ -30,7 +30,6 @@ android {
path file('src/main/jni/Android.mk')
}
}
ndkVersion = '22.0.7026061'
}

//dependencies must be placed below 'android' brackets to get it work on AIDE
Expand Down
10 changes: 6 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,24 @@

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true">
<activity android:name="com.android.support.MainActivity">
<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.Menu"
android:name="com.android.support.Launcher"
android:enabled="true"
android:exported="false"
android:exported="true"
android:stopWithTask="true" />
<!-- stopWithTask="true" is to prevent game crashing after closing from task manager -->
</application>
Expand Down
Binary file added app/src/main/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e235d57

Please sign in to comment.