├── LICENSE.md ├── README.md ├── Screenshot.png └── Xglyph2 ├── .gitignore ├── app ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── xposed_init │ ├── java │ └── com │ │ └── cypher │ │ └── xglyph2 │ │ ├── AppNotInstalledException.java │ │ ├── GlyphTranslator.java │ │ ├── MainActivity.java │ │ ├── Xglyph.java │ │ ├── XposedNotInstalledException.java │ │ └── hooks │ │ ├── ClearGlyphsHook.java │ │ ├── GlyphHackHook.java │ │ ├── GlyphSpeedHook.java │ │ ├── InstalledApplicationsHook.java │ │ ├── InstalledPackagesHook.java │ │ ├── NemesisHook.java │ │ ├── NormalHackHook.java │ │ └── TranslateGlyphsHook.java │ └── res │ ├── drawable │ ├── rectangle_cyan.xml │ ├── rectangle_orange.xml │ ├── rectangle_red.xml │ ├── rectangle_slider.xml │ ├── rectangle_yellow.xml │ └── rectangle_yellow_border.xml │ ├── layout │ ├── activity_main.xml │ ├── dialog.xml │ ├── dialog_entry.xml │ └── dialog_simple.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── raw │ ├── sfx_glyphgame_score_positive.ogg │ ├── sfx_ui_back.ogg │ └── sfx_ui_success.ogg │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Screenshot.png -------------------------------------------------------------------------------- /Xglyph2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/.gitignore -------------------------------------------------------------------------------- /Xglyph2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Xglyph2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/build.gradle -------------------------------------------------------------------------------- /Xglyph2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/AppNotInstalledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/AppNotInstalledException.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/GlyphTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/GlyphTranslator.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/MainActivity.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/Xglyph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/Xglyph.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/XposedNotInstalledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/XposedNotInstalledException.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/ClearGlyphsHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/ClearGlyphsHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/GlyphHackHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/GlyphHackHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/GlyphSpeedHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/GlyphSpeedHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/InstalledApplicationsHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/InstalledApplicationsHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/InstalledPackagesHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/InstalledPackagesHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/NemesisHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/NemesisHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/NormalHackHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/NormalHackHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/TranslateGlyphsHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/java/com/cypher/xglyph2/hooks/TranslateGlyphsHook.java -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_cyan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_cyan.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_orange.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_red.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_slider.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_yellow.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/drawable/rectangle_yellow_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/drawable/rectangle_yellow_border.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/layout/dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/layout/dialog.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/layout/dialog_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/layout/dialog_entry.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/layout/dialog_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/layout/dialog_simple.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/raw/sfx_glyphgame_score_positive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/raw/sfx_glyphgame_score_positive.ogg -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/raw/sfx_ui_back.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/raw/sfx_ui_back.ogg -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/raw/sfx_ui_success.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/raw/sfx_ui_success.ogg -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Xglyph2/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Xglyph2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/build.gradle -------------------------------------------------------------------------------- /Xglyph2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/gradle.properties -------------------------------------------------------------------------------- /Xglyph2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Xglyph2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Xglyph2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/gradlew -------------------------------------------------------------------------------- /Xglyph2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cypher01/Xglyph2/HEAD/Xglyph2/gradlew.bat -------------------------------------------------------------------------------- /Xglyph2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------