├── .gitignore ├── DexProtect ├── .gitignore ├── .idea │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── stormagain │ │ │ └── dexprotect │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── stormagain │ │ │ │ └── dexprotect │ │ │ │ ├── DemoApplication.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.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 │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── stormagain │ │ └── dexprotect │ │ └── ExampleUnitTest.java ├── build.gradle ├── dexshell │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── stormagain │ │ └── dexshell │ │ ├── ClassLoaderDelegate.java │ │ ├── Decrypt.java │ │ ├── ProxyApplication.java │ │ └── Reflect.java ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── protect-plugin │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── groovy │ │ └── com.stormagain.dexprotect │ │ │ ├── Constant.groovy │ │ │ ├── DexProtectExtension.groovy │ │ │ ├── DexProtectPlugin.groovy │ │ │ ├── DexProtectTransform.groovy │ │ │ └── Utils.java │ │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── protect-plugin.properties ├── release │ └── com │ │ └── stormagain │ │ └── dexprotect │ │ └── protect-plugin │ │ ├── 1.0 │ │ ├── protect-plugin-1.0.jar │ │ ├── protect-plugin-1.0.jar.md5 │ │ ├── protect-plugin-1.0.jar.sha1 │ │ ├── protect-plugin-1.0.pom │ │ ├── protect-plugin-1.0.pom.md5 │ │ └── protect-plugin-1.0.pom.sha1 │ │ ├── maven-metadata.xml │ │ ├── maven-metadata.xml.md5 │ │ └── maven-metadata.xml.sha1 └── settings.gradle ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /DexProtect/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/.gitignore -------------------------------------------------------------------------------- /DexProtect/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/.idea/vcs.xml -------------------------------------------------------------------------------- /DexProtect/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DexProtect/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/build.gradle -------------------------------------------------------------------------------- /DexProtect/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/proguard-rules.pro -------------------------------------------------------------------------------- /DexProtect/app/src/androidTest/java/com/stormagain/dexprotect/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/androidTest/java/com/stormagain/dexprotect/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /DexProtect/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/java/com/stormagain/dexprotect/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/java/com/stormagain/dexprotect/DemoApplication.java -------------------------------------------------------------------------------- /DexProtect/app/src/main/java/com/stormagain/dexprotect/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/java/com/stormagain/dexprotect/MainActivity.java -------------------------------------------------------------------------------- /DexProtect/app/src/main/java/com/stormagain/dexprotect/SecondActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/java/com/stormagain/dexprotect/SecondActivity.java -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/layout/activity_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/layout/activity_second.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /DexProtect/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /DexProtect/app/src/test/java/com/stormagain/dexprotect/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/app/src/test/java/com/stormagain/dexprotect/ExampleUnitTest.java -------------------------------------------------------------------------------- /DexProtect/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/build.gradle -------------------------------------------------------------------------------- /DexProtect/dexshell/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DexProtect/dexshell/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/build.gradle -------------------------------------------------------------------------------- /DexProtect/dexshell/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/proguard-rules.pro -------------------------------------------------------------------------------- /DexProtect/dexshell/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DexProtect/dexshell/src/main/java/com/stormagain/dexshell/ClassLoaderDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/src/main/java/com/stormagain/dexshell/ClassLoaderDelegate.java -------------------------------------------------------------------------------- /DexProtect/dexshell/src/main/java/com/stormagain/dexshell/Decrypt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/src/main/java/com/stormagain/dexshell/Decrypt.java -------------------------------------------------------------------------------- /DexProtect/dexshell/src/main/java/com/stormagain/dexshell/ProxyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/src/main/java/com/stormagain/dexshell/ProxyApplication.java -------------------------------------------------------------------------------- /DexProtect/dexshell/src/main/java/com/stormagain/dexshell/Reflect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/dexshell/src/main/java/com/stormagain/dexshell/Reflect.java -------------------------------------------------------------------------------- /DexProtect/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/gradle.properties -------------------------------------------------------------------------------- /DexProtect/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DexProtect/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /DexProtect/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/gradlew -------------------------------------------------------------------------------- /DexProtect/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/gradlew.bat -------------------------------------------------------------------------------- /DexProtect/protect-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DexProtect/protect-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/build.gradle -------------------------------------------------------------------------------- /DexProtect/protect-plugin/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/proguard-rules.pro -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/Constant.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/Constant.groovy -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectExtension.groovy -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectPlugin.groovy -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectTransform.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/DexProtectTransform.groovy -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/groovy/com.stormagain.dexprotect/Utils.java -------------------------------------------------------------------------------- /DexProtect/protect-plugin/src/main/resources/META-INF/gradle-plugins/protect-plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/protect-plugin/src/main/resources/META-INF/gradle-plugins/protect-plugin.properties -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.jar -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.jar.md5: -------------------------------------------------------------------------------- 1 | 0ce3638635917421ce1ce9ffd7985b7d -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.jar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.jar.sha1 -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.pom -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.pom.md5: -------------------------------------------------------------------------------- 1 | fa9e7684f6784caabfa2dd35ebf7130e -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/1.0/protect-plugin-1.0.pom.sha1 -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/maven-metadata.xml -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 6d2adcea29d646775b40859cea406188 -------------------------------------------------------------------------------- /DexProtect/release/com/stormagain/dexprotect/protect-plugin/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/DexProtect/release/com/stormagain/dexprotect/protect-plugin/maven-metadata.xml.sha1 -------------------------------------------------------------------------------- /DexProtect/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app',':dexshell', ':protect-plugin' 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormagain/DexProtectPlugin/HEAD/README.md --------------------------------------------------------------------------------