├── XposedChangeView ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ ├── strings.xml │ │ │ │ └── arrays.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedchangeview │ │ │ ├── HookChangeView.java │ │ │ └── ViewTools.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedchangeview │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedchangeview │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── XposedRequestSU ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedrequestsu │ │ │ └── XPHook.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedrequestsu │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedrequestsu │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── XposedTestApp ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ └── themes.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── layout │ │ │ │ ├── activity_web_view.xml │ │ │ │ └── activity_main.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── magicianguo │ │ │ │ └── xposedtestapp │ │ │ │ ├── App.java │ │ │ │ ├── WebViewActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── MySurfaceView.java │ │ ├── assets │ │ │ └── test.html │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedtestapp │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedtarget │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── XposedAllowScreenshot ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedallowscreenshot │ │ │ └── HookAllowScreenshot.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedallowscreenshot │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedmodule │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── XposedLogWebViewUrl ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedlogwebviewurl │ │ │ └── HookLogWebViewUrl.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedlogwebviewurl │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedlogwebviewurl │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── XposedShizukuCleaner ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ ├── arrays.xml │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── magicianguo │ │ │ │ └── xposedshizukucleaner │ │ │ │ ├── XPHook.java │ │ │ │ └── ShizukuHook.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedshizukucleaner │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedshizukucleaner │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── XposedJumpAppInterceptor ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── 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 │ │ │ │ ├── strings.xml │ │ │ │ ├── themes.xml │ │ │ │ └── colors.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── magicianguo │ │ │ │ └── xposedjumpappinterceptor │ │ │ │ ├── ReflectUtil.java │ │ │ │ ├── LogUtil.java │ │ │ │ ├── ResourceUtil.java │ │ │ │ └── HookEntry.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── magicianguo │ │ │ └── xposedjumpappinterceptor │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── magicianguo │ │ └── xposedjumpappinterceptor │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── testks.jks ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── copy-apk.gradle ├── README.md ├── testks-sign.gradle ├── settings.gradle ├── gradle.properties ├── gradlew.bat └── gradlew /XposedChangeView/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedRequestSU/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedTestApp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedAllowScreenshot/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedLogWebViewUrl/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedShizukuCleaner/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedRequestSU/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedrequestsu.XPHook -------------------------------------------------------------------------------- /testks.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/testks.jks -------------------------------------------------------------------------------- /XposedChangeView/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedchangeview.HookChangeView -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedshizukucleaner.XPHook -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedjumpappinterceptor.HookEntry -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedlogwebviewurl.HookLogWebViewUrl -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.magicianguo.xposedallowscreenshot.HookAllowScreenshot -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedTestApp 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5dp 4 | -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedRequestSU/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedTestApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedChangeView/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedAllowScreenshot 3 | 用于解除应用的截屏限制 4 | -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedLogWebViewUrl/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedShizukuCleaner/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedAllowScreenshot/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedRequestSU 3 | 作用在目标应用上,应用启动时就会请求Root权限。 4 | -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedChangeView 3 | 修改应用XposedTestApp的布局(对其他应用无效) 4 | -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicianGuo/Android-XposedTest/HEAD/XposedJumpAppInterceptor/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.magicianguo.xposedtestapp 5 | 6 | -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedJumpAppInterceptor 3 | 在跳转其他应用前弹窗拦截,用户点击允许才能跳转。 4 | -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | moe.shizuku.privileged.api 5 | 6 | -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedShizukuCleaner 3 | 作用在Shizuku上,激活成功后自动清理生成的文件/文件夹,防止被检测到。 4 | -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedLogWebViewUrl 3 | 记录应用每次用WebView加载网页的链接,并保存到“/sdcard/Android/data/[应用包名]”路径下 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Apr 15 09:21:32 CST 2024 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/* 5 | /.idea/caches 6 | /.idea/libraries 7 | /.idea/modules.xml 8 | /.idea/workspace.xml 9 | /.idea/navEditor.xml 10 | /.idea/assetWizardSettings.xml 11 | .DS_Store 12 | /build 13 | /captures 14 | .externalNativeBuild 15 | .cxx 16 | local.properties 17 | /apks -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /XposedTestApp/src/main/java/com/magicianguo/xposedtestapp/App.java: -------------------------------------------------------------------------------- 1 | package com.magicianguo.xposedtestapp; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | public class App extends Application { 7 | @Override 8 | public void onCreate() { 9 | super.onCreate(); 10 | Log.d("XposedTestApp", "onCreate: "); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /copy-apk.gradle: -------------------------------------------------------------------------------- 1 | android { 2 | applicationVariants.configureEach { variant -> 3 | variant.assembleProvider.get().doLast { 4 | variant.outputs.each { output -> 5 | copy { 6 | from output.outputFile 7 | into file(rootDir.path + "/apks") 8 | } 9 | } 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedChangeView/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedRequestSU/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedAllowScreenshot/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedLogWebViewUrl/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedShizukuCleaner/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedJumpAppInterceptor/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedTestApp/src/main/assets/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 |
这是自定义的网页
18 | 19 | -------------------------------------------------------------------------------- /XposedTestApp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 |