├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── README.md ├── SCOPE ├── SOURCE_URL ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ma │ │ └── skipdialogadbinstall │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── xposed_init │ │ └── yukihookapi_init │ ├── java │ │ └── com │ │ │ └── ma │ │ │ └── skipdialogadbinstall │ │ │ ├── application │ │ │ └── DefaultApplication.kt │ │ │ ├── hook │ │ │ └── HookEntry.kt │ │ │ ├── ui │ │ │ ├── activity │ │ │ │ ├── MainActivity.kt │ │ │ │ └── base │ │ │ │ │ └── BaseActivity.kt │ │ │ └── view │ │ │ │ └── MaterialSwitch.kt │ │ │ └── utils │ │ │ └── factory │ │ │ └── FunctionFactory.kt │ └── res │ │ ├── drawable-night │ │ ├── bg_dark_round.xml │ │ ├── bg_permotion_ripple.xml │ │ └── bg_permotion_round.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── bg_dark_round.xml │ │ ├── bg_green_round.xml │ │ ├── bg_orange_round.xml │ │ ├── bg_permotion_ripple.xml │ │ ├── bg_permotion_round.xml │ │ ├── ic_baseline_info_24.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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_github.png │ │ ├── ic_home.png │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_success.png │ │ ├── ic_warn.png │ │ └── ic_yukihookapi.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ ├── color.xml │ │ └── themes.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ └── values │ │ ├── array.xml │ │ ├── color.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── ma │ └── skipdialogadbinstall │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── –SUMMARY /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/README.md -------------------------------------------------------------------------------- /SCOPE: -------------------------------------------------------------------------------- 1 | ["com.sonelli.juicessh"] -------------------------------------------------------------------------------- /SOURCE_URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/SOURCE_URL -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ma/skipdialogadbinstall/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/androidTest/java/com/ma/skipdialogadbinstall/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/assets/yukihookapi_init: -------------------------------------------------------------------------------- 1 | com.ma.skipdialogadbinstall.hook.HookEntry -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/application/DefaultApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/application/DefaultApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/hook/HookEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/hook/HookEntry.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/ui/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/ui/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/ui/activity/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/ui/activity/base/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/ui/view/MaterialSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/ui/view/MaterialSwitch.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ma/skipdialogadbinstall/utils/factory/FunctionFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/java/com/ma/skipdialogadbinstall/utils/factory/FunctionFactory.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_dark_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable-night/bg_dark_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_permotion_ripple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable-night/bg_permotion_ripple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_permotion_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable-night/bg_permotion_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_dark_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/bg_dark_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_green_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/bg_green_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_orange_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/bg_orange_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_permotion_ripple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/bg_permotion_ripple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_permotion_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/bg_permotion_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_info_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/ic_baseline_info_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_github.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_home.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_success.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_warn.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_yukihookapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxhdpi/ic_yukihookapi.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values-night/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values/array.xml -------------------------------------------------------------------------------- /app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ma/skipdialogadbinstall/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/app/src/test/java/com/ma/skipdialogadbinstall/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xposed-Modules-Repo/com.ma.juicesshbypass/HEAD/settings.gradle -------------------------------------------------------------------------------- /–SUMMARY: -------------------------------------------------------------------------------- 1 | 解锁JuiceSSH高级版 2 | --------------------------------------------------------------------------------