├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── stale.yml └── workflows │ └── android.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── xposed_init │ ├── java │ └── toolkit │ │ └── coderstory │ │ ├── CorePatchForQ.java │ │ ├── CorePatchForR.java │ │ ├── CorePatchForS.java │ │ ├── CorePatchForT.java │ │ ├── CorePatchForU.java │ │ ├── CorePatchForV.java │ │ ├── MainHook.java │ │ ├── ReturnConstant.java │ │ ├── SettingsActivity.java │ │ └── XposedHelper.java │ └── res │ ├── layout │ └── activity_settings.xml │ ├── values-el │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-night │ └── styles.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── array.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── prefs.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | release 3 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | toolkit.coderstory.MainHook -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForQ.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForR.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForS.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForT.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForU.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/CorePatchForV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/CorePatchForV.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/MainHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/MainHook.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/ReturnConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/ReturnConstant.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/toolkit/coderstory/XposedHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/java/toolkit/coderstory/XposedHelper.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values/array.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/app/src/main/res/xml/prefs.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSPosed/CorePatch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | include(":app") 2 | --------------------------------------------------------------------------------