├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── maars │ │ └── fmenu │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── maars │ │ │ └── fmenu │ │ │ ├── Config.java │ │ │ ├── MainActivity.java │ │ │ ├── Menu.java │ │ │ ├── PBoolean.java │ │ │ ├── PInteger.java │ │ │ └── PString.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── maars │ └── fmenu │ └── ExampleUnitTest.java ├── docs ├── allclasses-index.html ├── allpackages-index.html ├── com │ └── maars │ │ └── fmenu │ │ ├── Config.html │ │ ├── MainActivity.html │ │ ├── Menu.html │ │ ├── PBoolean.html │ │ ├── PInteger.html │ │ ├── PString.html │ │ ├── package-summary.html │ │ └── package-tree.html ├── constant-values.html ├── element-list ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── jquery-ui.overrides.css ├── legal │ ├── ADDITIONAL_LICENSE_INFO │ ├── ASSEMBLY_EXCEPTION │ ├── LICENSE │ ├── jquery.md │ └── jqueryUI.md ├── member-search-index.js ├── module-search-index.js ├── overview-tree.html ├── package-search-index.js ├── resources │ ├── glass.png │ └── x.png ├── script-dir │ ├── jquery-3.6.0.min.js │ ├── jquery-ui.min.css │ └── jquery-ui.min.js ├── script.js ├── search.js ├── stylesheet.css ├── tag-search-index.js └── type-search-index.js ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/maars/fmenu/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/androidTest/java/com/maars/fmenu/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/Config.java -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/Menu.java -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PBoolean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/PBoolean.java -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/PInteger.java -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/java/com/maars/fmenu/PString.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-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/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/maars/fmenu/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/app/src/test/java/com/maars/fmenu/ExampleUnitTest.java -------------------------------------------------------------------------------- /docs/allclasses-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/allclasses-index.html -------------------------------------------------------------------------------- /docs/allpackages-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/allpackages-index.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/Config.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/MainActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/MainActivity.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/Menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/Menu.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PBoolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/PBoolean.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PInteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/PInteger.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/PString.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/package-summary.html -------------------------------------------------------------------------------- /docs/com/maars/fmenu/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/com/maars/fmenu/package-tree.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/element-list: -------------------------------------------------------------------------------- 1 | com.maars.fmenu 2 | -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-1.html -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-10.html -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-11.html -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-12.html -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-13.html -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-14.html -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-15.html -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-2.html -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-3.html -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-4.html -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-5.html -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-6.html -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-7.html -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-8.html -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index-files/index-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery-ui.overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/jquery-ui.overrides.css -------------------------------------------------------------------------------- /docs/legal/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- 1 | Please see ..\java.base\ADDITIONAL_LICENSE_INFO 2 | -------------------------------------------------------------------------------- /docs/legal/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- 1 | Please see ..\java.base\ASSEMBLY_EXCEPTION 2 | -------------------------------------------------------------------------------- /docs/legal/LICENSE: -------------------------------------------------------------------------------- 1 | Please see ..\java.base\LICENSE 2 | -------------------------------------------------------------------------------- /docs/legal/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/legal/jquery.md -------------------------------------------------------------------------------- /docs/legal/jqueryUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/legal/jqueryUI.md -------------------------------------------------------------------------------- /docs/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/member-search-index.js -------------------------------------------------------------------------------- /docs/module-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/module-search-index.js -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/package-search-index.js -------------------------------------------------------------------------------- /docs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/resources/glass.png -------------------------------------------------------------------------------- /docs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/resources/x.png -------------------------------------------------------------------------------- /docs/script-dir/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/script-dir/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/script-dir/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/script-dir/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/tag-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/tag-search-index.js -------------------------------------------------------------------------------- /docs/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/docs/type-search-index.js -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/HEAD/settings.gradle.kts --------------------------------------------------------------------------------