├── .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 ├── build.gradle.kts ├── 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: -------------------------------------------------------------------------------- 1 | # Gradle files 2 | .gradle/ 3 | build/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | 8 | # Log/OS Files 9 | *.log 10 | 11 | # Android Studio generated files and folders 12 | captures/ 13 | .externalNativeBuild/ 14 | .cxx/ 15 | *.apk 16 | output.json 17 | 18 | # IntelliJ 19 | *.iml 20 | .idea/ 21 | misc.xml 22 | deploymentTargetDropDown.xml 23 | render.experimental.xml 24 | 25 | # Keystore files 26 | *.jks 27 | *.keystore 28 | 29 | # Google Services (e.g. APIs or Firebase) 30 | google-services.json 31 | 32 | # Android Profiling 33 | *.hprof 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 maarsalien 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Frida Android Mod Menu 2 | 3 | A **Frida** **Mod Menu** for **Android Games** inspired by **[Android-Mod-Menu](https://github.com/LGLTeam/Android-Mod-Menu/)** by [LGLTeam](https://github.com/LGLTeam). 4 | 5 | [Demo Video](https://youtu.be/nIu2jYncD8Y)\ 6 | [Demo How To Use](https://youtu.be/8VuO687HIx8) 7 | 8 | For more information see [wiki](https://github.com/maarsalien/frida-android-mod-menu/wiki). 9 | 10 | ## Features 11 | 12 | - **Switches** (toggle on/off) 13 | - **SeekBars** (slide to set value) 14 | - **Buttons On/Off** (toggle on/off) 15 | - **ButtonLink** (click to open link) 16 | - **CheckBoxes** (tick to set value) 17 | - **InputNum** (enter number to set value) 18 | - **InputText** (enter text to set value) 19 | - **TextViews** (display rich text) 20 | - **WebView** (display web page with real html/css) 21 | 22 | ... and more see the [source]() code or the [javadoc]() for more information. 23 | 24 | ## Some precious links 25 | 26 | - [Frida Documentation](https://frida.re/docs/home/) - The official Frida documentation. 27 | - [Install Frida in Termux](https://github.com/apkpenetrator-re/Frida-Server-Setup-in-Termux) - A guide to install Frida server in Termux. 28 | - [Frida Il2cpp Bridge](https://github.com/vfsfitvnm/frida-il2cpp-bridge) - A Node.js module to help you to hook Il2cpp games with Frida. 29 | - [Frida Server](https://apkcombo.com/fr/frida-server/me.shingle.fridaserver/) - An Android app to install and run Frida server on your device. 30 | - [Frida No Root](https://lief-project.github.io/doc/latest/tutorials/09_frida_lief.html) - A tutorial to use Frida without root. 31 | 32 | ## Credits 33 | 34 | - [LGLTeam](https://github.com/LGLTeam/Android-Mod-Menu) for the original **Android-Mod-Menu**. -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("com.android.application") 3 | } 4 | 5 | android { 6 | namespace = "com.maars.fmenu" 7 | compileSdk = 33 8 | 9 | defaultConfig { 10 | applicationId = "com.maars.fmenu" 11 | minSdk = 22 12 | targetSdk = 33 13 | versionCode = 1 14 | versionName = "1.0" 15 | 16 | testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" 17 | } 18 | 19 | buildTypes { 20 | release { 21 | isMinifyEnabled = false 22 | proguardFiles( 23 | getDefaultProguardFile("proguard-android-optimize.txt"), 24 | "proguard-rules.pro" 25 | ) 26 | } 27 | } 28 | compileOptions { 29 | sourceCompatibility = JavaVersion.VERSION_1_8 30 | targetCompatibility = JavaVersion.VERSION_1_8 31 | } 32 | } 33 | 34 | dependencies { 35 | 36 | implementation("androidx.appcompat:appcompat:1.6.1") 37 | implementation("com.google.android.material:material:1.9.0") 38 | testImplementation("junit:junit:4.13.2") 39 | androidTestImplementation("androidx.test.ext:junit:1.1.5") 40 | androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") 41 | } -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/src/androidTest/java/com/maars/fmenu/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | assertEquals("com.maars.fmenu", appContext.getPackageName()); 25 | } 26 | } -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/Config.java: -------------------------------------------------------------------------------- 1 | 2 | package com.maars.fmenu; 3 | 4 | import android.graphics.Color; 5 | import android.text.Html; 6 | 7 | /** 8 | * Menu configuration 9 | */ 10 | public class Config { 11 | protected final int RADIO_BUTTON_COLOR = Color.parseColor("#FFFFFF"); 12 | protected final int COLLAPSE_BG_COLOR = Color.parseColor("#222D38"); 13 | protected final int NUMBER_TEXT_COLOR = Color.parseColor("#41c300"); 14 | protected final int SEEKBAR_NUMBER_NEG_COLOR = Color.parseColor("#FF0000"); 15 | protected final int SEEKBAR_NUMBER_POS_COLOR = Color.parseColor("#00FF00"); 16 | protected final int SEEKBAR_PROGRESS_COLOR = Color.parseColor("#80CBC4"); 17 | protected final int SEEKBAR_COLOR = Color.parseColor("#80CBC4"); 18 | protected final int CHECKBOX_COLOR = Color.parseColor("#80CBC4"); 19 | protected final String MENU_TITLE = Html.fromHtml("Moded By (your name)").toString(); 20 | protected final String MENU_SUBTITLE = "https://site.com lorem ipsum dolor sit amet consectetur adipiscing elit"; 21 | protected final int MENU_WIDTH = 290; 22 | protected final int MENU_HEIGHT = 210; 23 | protected final int MENU_BG_COLOR = Color.parseColor("#EE1C2A35"); 24 | protected final int MENU_FEATURE_BG_COLOR = Color.parseColor("#DD141C22"); 25 | protected final int TEXT_COLOR_PRIMARY = Color.parseColor("#82CAFD"); 26 | protected final int TEXT_COLOR_SECONDARY = Color.parseColor("#FFFFFF"); 27 | protected final float MENU_COLLAPSED_ALPHA = 0.7f; 28 | protected final int MENU_BUTTON_BG_COLOR = Color.parseColor("#1C262D"); 29 | protected final int MENU_CATEGORY_BG_COLOR = Color.parseColor("#2F3D4C"); 30 | protected final String MENU_HIDE_BUTTON_TEXT = Html.fromHtml("△").toString(); 31 | protected final String MENU_CLOSE_BUTTON_TEXT = Html.fromHtml("✕").toString(); 32 | protected final int BTN_ON_BG_COLOR = Color.parseColor("#1b5e20"); 33 | protected final int BTN_OFF_BG_COLOR = Color.parseColor("#7f0000"); 34 | protected final int MENU_LAUNCHER_ICON_SIZE = 45; 35 | protected final String MENU_LAUNCHER_ICON = "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"; 36 | 37 | } 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | 4 | import androidx.appcompat.app.AppCompatActivity; 5 | 6 | import android.app.AlertDialog; 7 | import android.os.Bundle; 8 | 9 | public class MainActivity extends AppCompatActivity { 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | 14 | TestMenu(); 15 | } 16 | 17 | /* This code is only for testing purposes */ 18 | /* Make sure to comment/remove this code before building the app to 19 | * reduce the dex size of the app 20 | * */ 21 | private void TestMenu() { 22 | Menu menu = new Menu(this); 23 | menu.attach(); 24 | 25 | menu.Category("Category 1"); 26 | menu.InputNum("InputNum 1", PInteger.of(0)); 27 | menu.InputText("InputText 1", PString.of("Hello World")); 28 | menu.Button("Button 1", PBoolean.of(false)); 29 | menu.CheckBox("CheckBox 1", PBoolean.of(false)); 30 | menu.Switch("Switch 1", PBoolean.of(false)); 31 | menu.ButtonOnOff("Button 2", PBoolean.of(false)); 32 | menu.SeekBar("SeekBar 1", PInteger.of(0), 0, 100, 5); 33 | menu.CheckBox("CheckBox 2", PBoolean.of(false)); 34 | menu.ButtonLink("External Link ↗", "https://youtu.be/dQw4w9WgXcQ"); 35 | menu.SeekBar("SeekBar 2", PInteger.of(0), -50, 100, 5); 36 | menu.SeekBar("SeekBar 3", PInteger.of(0), 0, 5); 37 | menu.RadioButton("Radio Button 1", new String[]{"Option 1", "Option 2", "Option 3"}, PInteger.of(0)); 38 | 39 | menu.startCollapse("Collapse 1"); 40 | 41 | menu.ButtonAction("Button 3", () -> { 42 | AlertDialog.Builder builder = new AlertDialog.Builder(this); 43 | builder.setTitle("Alert"); 44 | builder.setMessage("This is an alert"); 45 | builder.setPositiveButton("OK", null); 46 | builder.show(); 47 | }); 48 | 49 | menu.ButtonLink("External Link ↗", "https://youtu.be/dQw4w9WgXcQ"); 50 | menu.SeekBar("SeekBar 2", PInteger.of(0), -50, 100, 5); 51 | menu.SeekBar("SeekBar 3", PInteger.of(0), 0, 5); 52 | menu.Switch("Switch 1", PBoolean.of(false)); 53 | 54 | menu.endCollapse(); 55 | 56 | menu.TextView("This is a TextView not fully html supported. bold italic underline strikethrough color size face link"); 57 | 58 | menu.SeekBar("SeekBar 2", PInteger.of(0), -50, 100, 5); 59 | 60 | menu.WebTextView("" + "This is WebView, with REAL HTML support!" + "
Support CSS
" + "This is scrollable text" + ""); 61 | 62 | menu.SeekBar("SeekBar 3", PInteger.of(0), 0, 5); 63 | menu.RadioButton("Radio Button 1", new String[]{"Option 1", "Option 2", "Option 3"}, PInteger.of(0)); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PBoolean.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | 4 | /** 5 | * Wrapper class for primitive boolean, to be used as a parameter for Menu 6 | */ 7 | public class PBoolean { 8 | private boolean value; 9 | 10 | public PBoolean(boolean value) { 11 | this.value = value; 12 | } 13 | 14 | public boolean get() { 15 | return value; 16 | } 17 | 18 | public void set(boolean value) { 19 | this.value = value; 20 | } 21 | 22 | public static PBoolean of(boolean value) { 23 | return new PBoolean(value); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PInteger.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | 4 | /** 5 | * Wrapper class for primitive int, to be used as a parameter for Menu 6 | */ 7 | public class PInteger { 8 | private int value; 9 | 10 | public PInteger(int value) { 11 | this.value = value; 12 | } 13 | 14 | public int get() { 15 | return value; 16 | } 17 | 18 | public void set(int value) { 19 | this.value = value; 20 | } 21 | 22 | public static PInteger of(int value) { 23 | return new PInteger(value); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/java/com/maars/fmenu/PString.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | /** 4 | * Wrapper class for primitive String, to be used as a parameter for Menu 5 | */ 6 | public class PString { 7 | private String value; 8 | 9 | public PString(String value) { 10 | this.value = value; 11 | } 12 | 13 | public String get() { 14 | return value; 15 | } 16 | 17 | public void set(String value) { 18 | this.value = value; 19 | } 20 | 21 | public static PString of(String value) { 22 | return new PString(value); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/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/27a81235f2fd9bb98029dbfa23e441ca12e20f20/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Frida Mod Menu 3 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /app/src/test/java/com/maars/fmenu/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.maars.fmenu; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /build.gradle.kts: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id("com.android.application") version "8.1.0" apply false 4 | } -------------------------------------------------------------------------------- /docs/allclasses-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | All Classes and Interfaces 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

All Classes and Interfaces

51 |
52 |
53 |
Classes
54 |
55 |
Class
56 |
Description
57 | 58 |
59 |
Menu configuration
60 |
61 | 62 |
63 |
The menu class
64 |
65 | 66 |
67 |
Wrapper class for primitive boolean, to be used as a parameter for Menu
68 |
69 | 70 |
71 |
Wrapper class for primitive int, to be used as a parameter for Menu
72 |
73 | 74 |
75 |
Wrapper class for primitive String, to be used as a parameter for Menu
76 |
77 |
78 |
79 |
80 |
81 |
82 | 83 | 84 | -------------------------------------------------------------------------------- /docs/allpackages-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | All Packages 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

All Packages

51 |
52 |
Package Summary
53 |
54 |
Package
55 |
Description
56 | 57 |
 
58 |
59 |
60 |
61 |
62 | 63 | 64 | -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PBoolean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PBoolean 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 28 |
29 | 66 |
67 |
68 | 69 |
70 | 71 |

Class PBoolean

72 |
73 |
java.lang.Object 74 |
com.maars.fmenu.PBoolean
75 |
76 |
77 |
78 |
public class PBoolean 79 | extends Object
80 |
Wrapper class for primitive boolean, to be used as a parameter for Menu
81 |
82 |
83 |
    84 | 85 |
  • 86 |
    87 |

    Constructor Summary

    88 |
    Constructors
    89 |
    90 |
    Constructor
    91 |
    Description
    92 |
    PBoolean(boolean value)
    93 |
     
    94 |
    95 |
    96 |
  • 97 | 98 |
  • 99 |
    100 |

    Method Summary

    101 |
    102 |
    103 |
    104 |
    105 |
    Modifier and Type
    106 |
    Method
    107 |
    Description
    108 |
    boolean
    109 |
    get()
    110 |
     
    111 |
    static PBoolean
    112 |
    of(boolean value)
    113 |
     
    114 |
    void
    115 |
    set(boolean value)
    116 |
     
    117 |
    118 |
    119 |
    120 |
    121 |

    Methods inherited from class java.lang.Object

    122 | clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    123 |
    124 |
  • 125 |
126 |
127 |
128 |
    129 | 130 |
  • 131 |
    132 |

    Constructor Details

    133 |
      134 |
    • 135 |
      136 |

      PBoolean

      137 |
      public PBoolean(boolean value)
      138 |
      139 |
    • 140 |
    141 |
    142 |
  • 143 | 144 |
  • 145 |
    146 |

    Method Details

    147 |
      148 |
    • 149 |
      150 |

      get

      151 |
      public boolean get()
      152 |
      153 |
    • 154 |
    • 155 |
      156 |

      set

      157 |
      public void set(boolean value)
      158 |
      159 |
    • 160 |
    • 161 |
      162 |

      of

      163 |
      public static PBoolean of(boolean value)
      164 |
      165 |
    • 166 |
    167 |
    168 |
  • 169 |
170 |
171 | 172 |
173 |
174 |
175 | 176 | 177 | -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PInteger.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PInteger 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 28 |
29 | 66 |
67 |
68 | 69 |
70 | 71 |

Class PInteger

72 |
73 |
java.lang.Object 74 |
com.maars.fmenu.PInteger
75 |
76 |
77 |
78 |
public class PInteger 79 | extends Object
80 |
Wrapper class for primitive int, to be used as a parameter for Menu
81 |
82 |
83 |
    84 | 85 |
  • 86 |
    87 |

    Constructor Summary

    88 |
    Constructors
    89 |
    90 |
    Constructor
    91 |
    Description
    92 |
    PInteger(int value)
    93 |
     
    94 |
    95 |
    96 |
  • 97 | 98 |
  • 99 |
    100 |

    Method Summary

    101 |
    102 |
    103 |
    104 |
    105 |
    Modifier and Type
    106 |
    Method
    107 |
    Description
    108 |
    int
    109 |
    get()
    110 |
     
    111 |
    static PInteger
    112 |
    of(int value)
    113 |
     
    114 |
    void
    115 |
    set(int value)
    116 |
     
    117 |
    118 |
    119 |
    120 |
    121 |

    Methods inherited from class java.lang.Object

    122 | clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    123 |
    124 |
  • 125 |
126 |
127 |
128 |
    129 | 130 |
  • 131 |
    132 |

    Constructor Details

    133 |
      134 |
    • 135 |
      136 |

      PInteger

      137 |
      public PInteger(int value)
      138 |
      139 |
    • 140 |
    141 |
    142 |
  • 143 | 144 |
  • 145 |
    146 |

    Method Details

    147 |
      148 |
    • 149 |
      150 |

      get

      151 |
      public int get()
      152 |
      153 |
    • 154 |
    • 155 |
      156 |

      set

      157 |
      public void set(int value)
      158 |
      159 |
    • 160 |
    • 161 |
      162 |

      of

      163 |
      public static PInteger of(int value)
      164 |
      165 |
    • 166 |
    167 |
    168 |
  • 169 |
170 |
171 | 172 |
173 |
174 |
175 | 176 | 177 | -------------------------------------------------------------------------------- /docs/com/maars/fmenu/PString.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PString 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 28 |
29 | 66 |
67 |
68 | 69 |
70 | 71 |

Class PString

72 |
73 |
java.lang.Object 74 |
com.maars.fmenu.PString
75 |
76 |
77 |
78 |
public class PString 79 | extends Object
80 |
Wrapper class for primitive String, to be used as a parameter for Menu
81 |
82 |
83 |
    84 | 85 |
  • 86 |
    87 |

    Constructor Summary

    88 |
    Constructors
    89 |
    90 |
    Constructor
    91 |
    Description
    92 |
    PString(String value)
    93 |
     
    94 |
    95 |
    96 |
  • 97 | 98 |
  • 99 |
    100 |

    Method Summary

    101 |
    102 |
    103 |
    104 |
    105 |
    Modifier and Type
    106 |
    Method
    107 |
    Description
    108 | 109 |
    get()
    110 |
     
    111 |
    static PString
    112 |
    of(String value)
    113 |
     
    114 |
    void
    115 |
    set(String value)
    116 |
     
    117 |
    118 |
    119 |
    120 |
    121 |

    Methods inherited from class java.lang.Object

    122 | clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    123 |
    124 |
  • 125 |
126 |
127 |
128 |
    129 | 130 |
  • 131 |
    132 |

    Constructor Details

    133 |
      134 |
    • 135 |
      136 |

      PString

      137 |
      public PString(String value)
      138 |
      139 |
    • 140 |
    141 |
    142 |
  • 143 | 144 |
  • 145 |
    146 |

    Method Details

    147 |
      148 |
    • 149 |
      150 |

      get

      151 |
      public String get()
      152 |
      153 |
    • 154 |
    • 155 |
      156 |

      set

      157 |
      public void set(String value)
      158 |
      159 |
    • 160 |
    • 161 |
      162 |

      of

      163 |
      public static PString of(String value)
      164 |
      165 |
    • 166 |
    167 |
    168 |
  • 169 |
170 |
171 | 172 |
173 |
174 |
175 | 176 | 177 | -------------------------------------------------------------------------------- /docs/com/maars/fmenu/package-summary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.maars.fmenu 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 55 |
56 |
57 |
58 |

Package com.maars.fmenu

59 |
60 |
61 |
package com.maars.fmenu
62 |
63 |
    64 |
  • 65 |
    66 |
    Classes
    67 |
    68 |
    Class
    69 |
    Description
    70 | 71 |
    72 |
    Menu configuration
    73 |
    74 | 75 |
    76 |
    The menu class
    77 |
    78 | 79 |
    80 |
    Wrapper class for primitive boolean, to be used as a parameter for Menu
    81 |
    82 | 83 |
    84 |
    Wrapper class for primitive int, to be used as a parameter for Menu
    85 |
    86 | 87 |
    88 |
    Wrapper class for primitive String, to be used as a parameter for Menu
    89 |
    90 |
    91 |
    92 |
  • 93 |
94 |
95 |
96 |
97 |
98 | 99 | 100 | -------------------------------------------------------------------------------- /docs/com/maars/fmenu/package-tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.maars.fmenu Class Hierarchy 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Hierarchy For Package com.maars.fmenu

51 |
52 |
53 |

Class Hierarchy

54 |
    55 |
  • java.lang.Object 56 |
      57 |
    • com.maars.fmenu.Config
    • 58 |
    • com.maars.fmenu.PBoolean
    • 59 |
    • com.maars.fmenu.PInteger
    • 60 |
    • com.maars.fmenu.PString
    • 61 |
    • android.view.View (implements android.view.accessibility.AccessibilityEventSource, android.graphics.drawable.Drawable.Callback, android.view.KeyEvent.Callback) 62 |
        63 |
      • android.view.ViewGroup (implements android.view.ViewManager, android.view.ViewParent) 64 |
          65 |
        • android.widget.FrameLayout 66 |
            67 |
          • com.maars.fmenu.Menu
          • 68 |
          69 |
        • 70 |
        71 |
      • 72 |
      73 |
    • 74 |
    75 |
  • 76 |
77 |
78 |
79 |
80 |
81 | 82 | 83 | -------------------------------------------------------------------------------- /docs/element-list: -------------------------------------------------------------------------------- 1 | com.maars.fmenu 2 | -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | API Help 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 54 |
55 |
56 |

JavaDoc Help

57 | 76 |
77 |
78 |

Navigation

79 | Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces 80 | 90 |
91 |
92 |
93 |

Kinds of Pages

94 | The following sections describe the different kinds of pages in this collection. 95 |
96 |

Package

97 |

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

98 |
    99 |
  • Interfaces
  • 100 |
  • Classes
  • 101 |
  • Enum Classes
  • 102 |
  • Exceptions
  • 103 |
  • Errors
  • 104 |
  • Annotation Interfaces
  • 105 |
106 |
107 |
108 |

Class or Interface

109 |

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

110 |
    111 |
  • Class Inheritance Diagram
  • 112 |
  • Direct Subclasses
  • 113 |
  • All Known Subinterfaces
  • 114 |
  • All Known Implementing Classes
  • 115 |
  • Class or Interface Declaration
  • 116 |
  • Class or Interface Description
  • 117 |
118 |
119 |
    120 |
  • Nested Class Summary
  • 121 |
  • Enum Constant Summary
  • 122 |
  • Field Summary
  • 123 |
  • Property Summary
  • 124 |
  • Constructor Summary
  • 125 |
  • Method Summary
  • 126 |
  • Required Element Summary
  • 127 |
  • Optional Element Summary
  • 128 |
129 |
130 |
    131 |
  • Enum Constant Details
  • 132 |
  • Field Details
  • 133 |
  • Property Details
  • 134 |
  • Constructor Details
  • 135 |
  • Method Details
  • 136 |
  • Element Details
  • 137 |
138 |

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

139 |

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

140 |
141 |
142 |

Other Files

143 |

Packages and modules may contain pages with additional information related to the declarations nearby.

144 |
145 |
146 |

Tree (Class Hierarchy)

147 |

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

148 |
    149 |
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • 150 |
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • 151 |
152 |
153 |
154 |

Constant Field Values

155 |

The Constant Field Values page lists the static final fields and their values.

156 |
157 |
158 |

All Packages

159 |

The All Packages page contains an alphabetic index of all packages contained in the documentation.

160 |
161 |
162 |

All Classes and Interfaces

163 |

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

164 |
165 |
166 |

Index

167 |

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

168 |
169 |
170 |
171 | This help file applies to API documentation generated by the standard doclet.
172 |
173 |
174 | 175 | 176 | -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | A-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

A

54 |
55 |
attach() - Method in class com.maars.fmenu.Menu
56 |
57 |
Attach the menu to the screen
58 |
59 |
60 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
61 |
62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | O-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

O

54 |
55 |
of(boolean) - Static method in class com.maars.fmenu.PBoolean
56 |
 
57 |
of(int) - Static method in class com.maars.fmenu.PInteger
58 |
 
59 |
of(String) - Static method in class com.maars.fmenu.PString
60 |
 
61 |
62 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
63 |
64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | P-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

P

54 |
55 |
PBoolean - Class in com.maars.fmenu
56 |
57 |
Wrapper class for primitive boolean, to be used as a parameter for Menu
58 |
59 |
PBoolean(boolean) - Constructor for class com.maars.fmenu.PBoolean
60 |
 
61 |
PInteger - Class in com.maars.fmenu
62 |
63 |
Wrapper class for primitive int, to be used as a parameter for Menu
64 |
65 |
PInteger(int) - Constructor for class com.maars.fmenu.PInteger
66 |
 
67 |
PString - Class in com.maars.fmenu
68 |
69 |
Wrapper class for primitive String, to be used as a parameter for Menu
70 |
71 |
PString(String) - Constructor for class com.maars.fmenu.PString
72 |
 
73 |
74 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
75 |
76 |
77 | 78 | 79 | -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | R-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

R

54 |
55 |
RADIO_BUTTON_COLOR - Variable in class com.maars.fmenu.Config
56 |
 
57 |
RadioButton(String, String[], PInteger) - Method in class com.maars.fmenu.Menu
58 |
59 |
Create a radio button
60 |
61 |
62 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
63 |
64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | S-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

S

54 |
55 |
SeekBar(String, PInteger, int, int) - Method in class com.maars.fmenu.Menu
56 |
57 |
Create a seek bar
58 |
59 |
SeekBar(String, PInteger, int, int, int) - Method in class com.maars.fmenu.Menu
60 |
61 |
Create a seek bar
62 |
63 |
SEEKBAR_COLOR - Variable in class com.maars.fmenu.Config
64 |
 
65 |
SEEKBAR_NUMBER_NEG_COLOR - Variable in class com.maars.fmenu.Config
66 |
 
67 |
SEEKBAR_NUMBER_POS_COLOR - Variable in class com.maars.fmenu.Config
68 |
 
69 |
SEEKBAR_PROGRESS_COLOR - Variable in class com.maars.fmenu.Config
70 |
 
71 |
set(boolean) - Method in class com.maars.fmenu.PBoolean
72 |
 
73 |
set(int) - Method in class com.maars.fmenu.PInteger
74 |
 
75 |
set(String) - Method in class com.maars.fmenu.PString
76 |
 
77 |
startCollapse(String) - Method in class com.maars.fmenu.Menu
78 |
79 |
Create a collapse menu
80 |
81 |
Switch(String, PBoolean) - Method in class com.maars.fmenu.Menu
82 |
83 |
Create a switch
84 |
85 |
86 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
87 |
88 |
89 | 90 | 91 | -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | T-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

T

54 |
55 |
TEXT_COLOR_PRIMARY - Variable in class com.maars.fmenu.Config
56 |
 
57 |
TEXT_COLOR_SECONDARY - Variable in class com.maars.fmenu.Config
58 |
 
59 |
TextView(String) - Method in class com.maars.fmenu.Menu
60 |
61 |
Create a text view
62 |
63 |
64 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
65 |
66 |
67 | 68 | 69 | -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | W-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

W

54 |
55 |
WebTextView(String) - Method in class com.maars.fmenu.Menu
56 |
57 |
Create a web text view
58 |
59 |
60 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
61 |
62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | B-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

B

54 |
55 |
BTN_OFF_BG_COLOR - Variable in class com.maars.fmenu.Config
56 |
 
57 |
BTN_ON_BG_COLOR - Variable in class com.maars.fmenu.Config
58 |
 
59 |
Button(String, PBoolean) - Method in class com.maars.fmenu.Menu
60 |
61 |
Create a button
62 |
63 |
ButtonAction(String, Runnable) - Method in class com.maars.fmenu.Menu
64 |
65 |
Create an action button
66 |
67 |
ButtonLink(String, String) - Method in class com.maars.fmenu.Menu
68 |
69 |
Create a button that opens a link
70 |
71 |
ButtonOnOff(String, PBoolean) - Method in class com.maars.fmenu.Menu
72 |
73 |
Create a on/off button
74 |
75 |
76 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
77 |
78 |
79 | 80 | 81 | -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | C-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

C

54 |
55 |
Category(String) - Method in class com.maars.fmenu.Menu
56 |
57 |
Create a category separator
58 |
59 |
CheckBox(String, PBoolean) - Method in class com.maars.fmenu.Menu
60 |
61 |
Create a checkbox
62 |
63 |
CHECKBOX_COLOR - Variable in class com.maars.fmenu.Config
64 |
 
65 |
COLLAPSE_BG_COLOR - Variable in class com.maars.fmenu.Config
66 |
 
67 |
com.maars.fmenu - package com.maars.fmenu
68 |
 
69 |
Config - Class in com.maars.fmenu
70 |
71 |
Menu configuration
72 |
73 |
Config() - Constructor for class com.maars.fmenu.Config
74 |
 
75 |
76 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
77 |
78 |
79 | 80 | 81 | -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | D-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

D

54 |
55 |
detach() - Method in class com.maars.fmenu.Menu
56 |
57 |
Detach the menu from the screen
58 |
59 |
60 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
61 |
62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | E-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

E

54 |
55 |
endCollapse() - Method in class com.maars.fmenu.Menu
56 |
57 |
End a collapse menu
58 |
59 |
60 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
61 |
62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | G-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

G

54 |
55 |
get() - Method in class com.maars.fmenu.PBoolean
56 |
 
57 |
get() - Method in class com.maars.fmenu.PInteger
58 |
 
59 |
get() - Method in class com.maars.fmenu.PString
60 |
 
61 |
62 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
63 |
64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | I-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

I

54 |
55 |
InputNum(String, PInteger) - Method in class com.maars.fmenu.Menu
56 |
57 |
Create an input of numbers
58 |
59 |
InputText(String, PString) - Method in class com.maars.fmenu.Menu
60 |
61 |
Create a text input
62 |
63 |
64 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
65 |
66 |
67 | 68 | 69 | -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | M-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

M

54 |
55 |
Menu - Class in com.maars.fmenu
56 |
57 |
The menu class
58 |
59 |
Menu(Context) - Constructor for class com.maars.fmenu.Menu
60 |
61 |
Create a menu
62 |
63 |
Menu(Context, Config) - Constructor for class com.maars.fmenu.Menu
64 |
65 |
Create a menu
66 |
67 |
MENU_BG_COLOR - Variable in class com.maars.fmenu.Config
68 |
 
69 |
MENU_BUTTON_BG_COLOR - Variable in class com.maars.fmenu.Config
70 |
 
71 |
MENU_CATEGORY_BG_COLOR - Variable in class com.maars.fmenu.Config
72 |
 
73 |
MENU_CLOSE_BUTTON_TEXT - Variable in class com.maars.fmenu.Config
74 |
 
75 |
MENU_COLLAPSED_ALPHA - Variable in class com.maars.fmenu.Config
76 |
 
77 |
MENU_FEATURE_BG_COLOR - Variable in class com.maars.fmenu.Config
78 |
 
79 |
MENU_HEIGHT - Variable in class com.maars.fmenu.Config
80 |
 
81 |
MENU_HIDE_BUTTON_TEXT - Variable in class com.maars.fmenu.Config
82 |
 
83 |
MENU_LAUNCHER_ICON - Variable in class com.maars.fmenu.Config
84 |
 
85 |
MENU_LAUNCHER_ICON_SIZE - Variable in class com.maars.fmenu.Config
86 |
 
87 |
MENU_SUBTITLE - Variable in class com.maars.fmenu.Config
88 |
 
89 |
MENU_TITLE - Variable in class com.maars.fmenu.Config
90 |
 
91 |
MENU_WIDTH - Variable in class com.maars.fmenu.Config
92 |
 
93 |
94 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
95 |
96 |
97 | 98 | 99 | -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | N-Index 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Index

51 |
52 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values 53 |

N

54 |
55 |
NUMBER_TEXT_COLOR - Variable in class com.maars.fmenu.Config
56 |
 
57 |
58 | A B C D E G I M N O P R S T W 
All Classes and Interfaces|All Packages|Constant Field Values
59 |
60 |
61 | 62 | 63 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Generated Documentation (Untitled) 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 |
20 | 23 |

com/maars/fmenu/package-summary.html

24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jquery-ui.overrides.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 | * 5 | * This code is free software; you can redistribute it and/or modify it 6 | * under the terms of the GNU General Public License version 2 only, as 7 | * published by the Free Software Foundation. Oracle designates this 8 | * particular file as subject to the "Classpath" exception as provided 9 | * by Oracle in the LICENSE file that accompanied this code. 10 | * 11 | * This code is distributed in the hope that it will be useful, but WITHOUT 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 | * version 2 for more details (a copy is included in the LICENSE file that 15 | * accompanied this code). 16 | * 17 | * You should have received a copy of the GNU General Public License version 18 | * 2 along with this work; if not, write to the Free Software Foundation, 19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 | * 21 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 | * or visit www.oracle.com if you need additional information or have any 23 | * questions. 24 | */ 25 | 26 | .ui-state-active, 27 | .ui-widget-content .ui-state-active, 28 | .ui-widget-header .ui-state-active, 29 | a.ui-button:active, 30 | .ui-button:active, 31 | .ui-button.ui-state-active:hover { 32 | /* Overrides the color of selection used in jQuery UI */ 33 | background: #F8981D; 34 | border: 1px solid #F8981D; 35 | } 36 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | ## jQuery v3.6.0 2 | 3 | ### jQuery License 4 | ``` 5 | jQuery v 3.6.0 6 | Copyright OpenJS Foundation and other contributors, https://openjsf.org/ 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining 9 | a copy of this software and associated documentation files (the 10 | "Software"), to deal in the Software without restriction, including 11 | without limitation the rights to use, copy, modify, merge, publish, 12 | distribute, sublicense, and/or sell copies of the Software, and to 13 | permit persons to whom the Software is furnished to do so, subject to 14 | the following conditions: 15 | 16 | The above copyright notice and this permission notice shall be 17 | included in all copies or substantial portions of the Software. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 22 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 23 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 24 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 25 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | 27 | ****************************************** 28 | 29 | The jQuery JavaScript Library v3.6.0 also includes Sizzle.js 30 | 31 | Sizzle.js includes the following license: 32 | 33 | Copyright JS Foundation and other contributors, https://js.foundation/ 34 | 35 | This software consists of voluntary contributions made by many 36 | individuals. For exact contribution history, see the revision history 37 | available at https://github.com/jquery/sizzle 38 | 39 | The following license applies to all parts of this software except as 40 | documented below: 41 | 42 | ==== 43 | 44 | Permission is hereby granted, free of charge, to any person obtaining 45 | a copy of this software and associated documentation files (the 46 | "Software"), to deal in the Software without restriction, including 47 | without limitation the rights to use, copy, modify, merge, publish, 48 | distribute, sublicense, and/or sell copies of the Software, and to 49 | permit persons to whom the Software is furnished to do so, subject to 50 | the following conditions: 51 | 52 | The above copyright notice and this permission notice shall be 53 | included in all copies or substantial portions of the Software. 54 | 55 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 56 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 57 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 58 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 59 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 60 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 61 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 62 | 63 | ==== 64 | 65 | All files located in the node_modules and external directories are 66 | externally maintained libraries used by this software which have their 67 | own licenses; we recommend you read them, as their terms may differ from 68 | the terms above. 69 | 70 | ********************* 71 | 72 | ``` 73 | -------------------------------------------------------------------------------- /docs/legal/jqueryUI.md: -------------------------------------------------------------------------------- 1 | ## jQuery UI v1.12.1 2 | 3 | ### jQuery UI License 4 | ``` 5 | Copyright jQuery Foundation and other contributors, https://jquery.org/ 6 | 7 | This software consists of voluntary contributions made by many 8 | individuals. For exact contribution history, see the revision history 9 | available at https://github.com/jquery/jquery-ui 10 | 11 | The following license applies to all parts of this software except as 12 | documented below: 13 | 14 | ==== 15 | 16 | Permission is hereby granted, free of charge, to any person obtaining 17 | a copy of this software and associated documentation files (the 18 | "Software"), to deal in the Software without restriction, including 19 | without limitation the rights to use, copy, modify, merge, publish, 20 | distribute, sublicense, and/or sell copies of the Software, and to 21 | permit persons to whom the Software is furnished to do so, subject to 22 | the following conditions: 23 | 24 | The above copyright notice and this permission notice shall be 25 | included in all copies or substantial portions of the Software. 26 | 27 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 28 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 29 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 30 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 31 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 32 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 33 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 34 | 35 | ==== 36 | 37 | Copyright and related rights for sample code are waived via CC0. Sample 38 | code is defined as all source code contained within the demos directory. 39 | 40 | CC0: http://creativecommons.org/publicdomain/zero/1.0/ 41 | 42 | ==== 43 | 44 | All files located in the node_modules and external directories are 45 | externally maintained libraries used by this software which have their 46 | own licenses; we recommend you read them, as their terms may differ from 47 | the terms above. 48 | 49 | ``` 50 | -------------------------------------------------------------------------------- /docs/member-search-index.js: -------------------------------------------------------------------------------- 1 | memberSearchIndex = [{"p":"com.maars.fmenu","c":"Menu","l":"attach()"},{"p":"com.maars.fmenu","c":"Config","l":"BTN_OFF_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"BTN_ON_BG_COLOR"},{"p":"com.maars.fmenu","c":"Menu","l":"Button(String, PBoolean)","u":"Button(java.lang.String,com.maars.fmenu.PBoolean)"},{"p":"com.maars.fmenu","c":"Menu","l":"ButtonAction(String, Runnable)","u":"ButtonAction(java.lang.String,java.lang.Runnable)"},{"p":"com.maars.fmenu","c":"Menu","l":"ButtonLink(String, String)","u":"ButtonLink(java.lang.String,java.lang.String)"},{"p":"com.maars.fmenu","c":"Menu","l":"ButtonOnOff(String, PBoolean)","u":"ButtonOnOff(java.lang.String,com.maars.fmenu.PBoolean)"},{"p":"com.maars.fmenu","c":"Menu","l":"Category(String)","u":"Category(java.lang.String)"},{"p":"com.maars.fmenu","c":"Config","l":"CHECKBOX_COLOR"},{"p":"com.maars.fmenu","c":"Menu","l":"CheckBox(String, PBoolean)","u":"CheckBox(java.lang.String,com.maars.fmenu.PBoolean)"},{"p":"com.maars.fmenu","c":"Config","l":"COLLAPSE_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"Config()","u":"%3Cinit%3E()"},{"p":"com.maars.fmenu","c":"Menu","l":"detach()"},{"p":"com.maars.fmenu","c":"Menu","l":"endCollapse()"},{"p":"com.maars.fmenu","c":"PBoolean","l":"get()"},{"p":"com.maars.fmenu","c":"PInteger","l":"get()"},{"p":"com.maars.fmenu","c":"PString","l":"get()"},{"p":"com.maars.fmenu","c":"Menu","l":"InputNum(String, PInteger)","u":"InputNum(java.lang.String,com.maars.fmenu.PInteger)"},{"p":"com.maars.fmenu","c":"Menu","l":"InputText(String, PString)","u":"InputText(java.lang.String,com.maars.fmenu.PString)"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_BUTTON_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_CATEGORY_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_CLOSE_BUTTON_TEXT"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_COLLAPSED_ALPHA"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_FEATURE_BG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_HEIGHT"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_HIDE_BUTTON_TEXT"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_LAUNCHER_ICON"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_LAUNCHER_ICON_SIZE"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_SUBTITLE"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_TITLE"},{"p":"com.maars.fmenu","c":"Config","l":"MENU_WIDTH"},{"p":"com.maars.fmenu","c":"Menu","l":"Menu(Context)","u":"%3Cinit%3E(android.content.Context)"},{"p":"com.maars.fmenu","c":"Menu","l":"Menu(Context, Config)","u":"%3Cinit%3E(android.content.Context,com.maars.fmenu.Config)"},{"p":"com.maars.fmenu","c":"Config","l":"NUMBER_TEXT_COLOR"},{"p":"com.maars.fmenu","c":"PBoolean","l":"of(boolean)"},{"p":"com.maars.fmenu","c":"PInteger","l":"of(int)"},{"p":"com.maars.fmenu","c":"PString","l":"of(String)","u":"of(java.lang.String)"},{"p":"com.maars.fmenu","c":"PBoolean","l":"PBoolean(boolean)","u":"%3Cinit%3E(boolean)"},{"p":"com.maars.fmenu","c":"PInteger","l":"PInteger(int)","u":"%3Cinit%3E(int)"},{"p":"com.maars.fmenu","c":"PString","l":"PString(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.maars.fmenu","c":"Config","l":"RADIO_BUTTON_COLOR"},{"p":"com.maars.fmenu","c":"Menu","l":"RadioButton(String, String[], PInteger)","u":"RadioButton(java.lang.String,java.lang.String[],com.maars.fmenu.PInteger)"},{"p":"com.maars.fmenu","c":"Config","l":"SEEKBAR_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"SEEKBAR_NUMBER_NEG_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"SEEKBAR_NUMBER_POS_COLOR"},{"p":"com.maars.fmenu","c":"Config","l":"SEEKBAR_PROGRESS_COLOR"},{"p":"com.maars.fmenu","c":"Menu","l":"SeekBar(String, PInteger, int, int)","u":"SeekBar(java.lang.String,com.maars.fmenu.PInteger,int,int)"},{"p":"com.maars.fmenu","c":"Menu","l":"SeekBar(String, PInteger, int, int, int)","u":"SeekBar(java.lang.String,com.maars.fmenu.PInteger,int,int,int)"},{"p":"com.maars.fmenu","c":"PBoolean","l":"set(boolean)"},{"p":"com.maars.fmenu","c":"PInteger","l":"set(int)"},{"p":"com.maars.fmenu","c":"PString","l":"set(String)","u":"set(java.lang.String)"},{"p":"com.maars.fmenu","c":"Menu","l":"startCollapse(String)","u":"startCollapse(java.lang.String)"},{"p":"com.maars.fmenu","c":"Menu","l":"Switch(String, PBoolean)","u":"Switch(java.lang.String,com.maars.fmenu.PBoolean)"},{"p":"com.maars.fmenu","c":"Config","l":"TEXT_COLOR_PRIMARY"},{"p":"com.maars.fmenu","c":"Config","l":"TEXT_COLOR_SECONDARY"},{"p":"com.maars.fmenu","c":"Menu","l":"TextView(String)","u":"TextView(java.lang.String)"},{"p":"com.maars.fmenu","c":"Menu","l":"WebTextView(String)","u":"WebTextView(java.lang.String)"}];updateSearchResults(); -------------------------------------------------------------------------------- /docs/module-search-index.js: -------------------------------------------------------------------------------- 1 | moduleSearchIndex = [];updateSearchResults(); -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Class Hierarchy 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 24 |
25 | 47 |
48 |
49 |
50 |

Hierarchy For All Packages

51 | Package Hierarchies: 52 | 55 |
56 |
57 |

Class Hierarchy

58 |
    59 |
  • java.lang.Object 60 |
      61 |
    • com.maars.fmenu.Config
    • 62 |
    • com.maars.fmenu.PBoolean
    • 63 |
    • com.maars.fmenu.PInteger
    • 64 |
    • com.maars.fmenu.PString
    • 65 |
    • android.view.View (implements android.view.accessibility.AccessibilityEventSource, android.graphics.drawable.Drawable.Callback, android.view.KeyEvent.Callback) 66 |
        67 |
      • android.view.ViewGroup (implements android.view.ViewManager, android.view.ViewParent) 68 |
          69 |
        • android.widget.FrameLayout 70 |
            71 |
          • com.maars.fmenu.Menu
          • 72 |
          73 |
        • 74 |
        75 |
      • 76 |
      77 |
    • 78 |
    79 |
  • 80 |
81 |
82 |
83 |
84 |
85 | 86 | 87 | -------------------------------------------------------------------------------- /docs/package-search-index.js: -------------------------------------------------------------------------------- 1 | packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"com.maars.fmenu"}];updateSearchResults(); -------------------------------------------------------------------------------- /docs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/27a81235f2fd9bb98029dbfa23e441ca12e20f20/docs/resources/glass.png -------------------------------------------------------------------------------- /docs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/27a81235f2fd9bb98029dbfa23e441ca12e20f20/docs/resources/x.png -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.13.1 - 2022-05-12 2 | * http://jqueryui.com 3 | * Includes: core.css, autocomplete.css, menu.css 4 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 5 | 6 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved. 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 | * 5 | * This code is free software; you can redistribute it and/or modify it 6 | * under the terms of the GNU General Public License version 2 only, as 7 | * published by the Free Software Foundation. Oracle designates this 8 | * particular file as subject to the "Classpath" exception as provided 9 | * by Oracle in the LICENSE file that accompanied this code. 10 | * 11 | * This code is distributed in the hope that it will be useful, but WITHOUT 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 | * version 2 for more details (a copy is included in the LICENSE file that 15 | * accompanied this code). 16 | * 17 | * You should have received a copy of the GNU General Public License version 18 | * 2 along with this work; if not, write to the Free Software Foundation, 19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 | * 21 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 | * or visit www.oracle.com if you need additional information or have any 23 | * questions. 24 | */ 25 | 26 | var moduleSearchIndex; 27 | var packageSearchIndex; 28 | var typeSearchIndex; 29 | var memberSearchIndex; 30 | var tagSearchIndex; 31 | function loadScripts(doc, tag) { 32 | createElem(doc, tag, 'search.js'); 33 | 34 | createElem(doc, tag, 'module-search-index.js'); 35 | createElem(doc, tag, 'package-search-index.js'); 36 | createElem(doc, tag, 'type-search-index.js'); 37 | createElem(doc, tag, 'member-search-index.js'); 38 | createElem(doc, tag, 'tag-search-index.js'); 39 | } 40 | 41 | function createElem(doc, tag, path) { 42 | var script = doc.createElement(tag); 43 | var scriptElement = doc.getElementsByTagName(tag)[0]; 44 | script.src = pathtoroot + path; 45 | scriptElement.parentNode.insertBefore(script, scriptElement); 46 | } 47 | 48 | function show(tableId, selected, columns) { 49 | if (tableId !== selected) { 50 | document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') 51 | .forEach(function(elem) { 52 | elem.style.display = 'none'; 53 | }); 54 | } 55 | document.querySelectorAll('div.' + selected) 56 | .forEach(function(elem, index) { 57 | elem.style.display = ''; 58 | var isEvenRow = index % (columns * 2) < columns; 59 | elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); 60 | elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); 61 | }); 62 | updateTabs(tableId, selected); 63 | } 64 | 65 | function updateTabs(tableId, selected) { 66 | document.querySelector('div#' + tableId +' .summary-table') 67 | .setAttribute('aria-labelledby', selected); 68 | document.querySelectorAll('button[id^="' + tableId + '"]') 69 | .forEach(function(tab, index) { 70 | if (selected === tab.id || (tableId === selected && index === 0)) { 71 | tab.className = activeTableTab; 72 | tab.setAttribute('aria-selected', true); 73 | tab.setAttribute('tabindex',0); 74 | } else { 75 | tab.className = tableTab; 76 | tab.setAttribute('aria-selected', false); 77 | tab.setAttribute('tabindex',-1); 78 | } 79 | }); 80 | } 81 | 82 | function switchTab(e) { 83 | var selected = document.querySelector('[aria-selected=true]'); 84 | if (selected) { 85 | if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { 86 | // left or up arrow key pressed: move focus to previous tab 87 | selected.previousSibling.click(); 88 | selected.previousSibling.focus(); 89 | e.preventDefault(); 90 | } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { 91 | // right or down arrow key pressed: move focus to next tab 92 | selected.nextSibling.click(); 93 | selected.nextSibling.focus(); 94 | e.preventDefault(); 95 | } 96 | } 97 | } 98 | 99 | var updateSearchResults = function() {}; 100 | 101 | function indexFilesLoaded() { 102 | return moduleSearchIndex 103 | && packageSearchIndex 104 | && typeSearchIndex 105 | && memberSearchIndex 106 | && tagSearchIndex; 107 | } 108 | 109 | // Workaround for scroll position not being included in browser history (8249133) 110 | document.addEventListener("DOMContentLoaded", function(e) { 111 | var contentDiv = document.querySelector("div.flex-content"); 112 | window.addEventListener("popstate", function(e) { 113 | if (e.state !== null) { 114 | contentDiv.scrollTop = e.state; 115 | } 116 | }); 117 | window.addEventListener("hashchange", function(e) { 118 | history.replaceState(contentDiv.scrollTop, document.title); 119 | }); 120 | contentDiv.addEventListener("scroll", function(e) { 121 | var timeoutID; 122 | if (!timeoutID) { 123 | timeoutID = setTimeout(function() { 124 | history.replaceState(contentDiv.scrollTop, document.title); 125 | timeoutID = null; 126 | }, 100); 127 | } 128 | }); 129 | if (!location.hash) { 130 | history.replaceState(contentDiv.scrollTop, document.title); 131 | } 132 | }); 133 | -------------------------------------------------------------------------------- /docs/tag-search-index.js: -------------------------------------------------------------------------------- 1 | tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"}];updateSearchResults(); -------------------------------------------------------------------------------- /docs/type-search-index.js: -------------------------------------------------------------------------------- 1 | typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"com.maars.fmenu","l":"Config"},{"p":"com.maars.fmenu","l":"Menu"},{"p":"com.maars.fmenu","l":"PBoolean"},{"p":"com.maars.fmenu","l":"PInteger"},{"p":"com.maars.fmenu","l":"PString"}];updateSearchResults(); -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Enables namespacing of each library's R class so that its R class includes only the 19 | # resources declared in the library itself and none from the library's dependencies, 20 | # thereby reducing the size of the R class for that library 21 | android.nonTransitiveRClass=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maarsalien/frida-android-mod-menu/27a81235f2fd9bb98029dbfa23e441ca12e20f20/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 28 00:20:25 CEST 2023 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | google() 4 | mavenCentral() 5 | gradlePluginPortal() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | 16 | rootProject.name = "Frida Mod Menu" 17 | include(":app") 18 | --------------------------------------------------------------------------------