├── README.md ├── SaviorTest ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── wangxiandeng │ │ │ └── saviortest │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── patch_dex.jar │ │ ├── java │ │ │ └── com │ │ │ │ └── wangxiandeng │ │ │ │ └── saviortest │ │ │ │ ├── App.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── PatchUtil.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── wangxiandeng │ │ └── saviortest │ │ └── ExampleUnitTest.java ├── build.gradle ├── buildsrc │ ├── build.gradle │ ├── build │ │ ├── classes │ │ │ └── main │ │ │ │ └── com │ │ │ │ └── me │ │ │ │ └── plugin │ │ │ │ ├── JarZipUtil$_zipJar_closure1.class │ │ │ │ ├── JarZipUtil.class │ │ │ │ ├── MyInject$_injectDir_closure1.class │ │ │ │ ├── MyInject.class │ │ │ │ ├── MyPlugin.class │ │ │ │ ├── MyTransform$_transform_closure1$_closure2.class │ │ │ │ ├── MyTransform$_transform_closure1$_closure3.class │ │ │ │ ├── MyTransform$_transform_closure1.class │ │ │ │ └── MyTransform.class │ │ ├── libs │ │ │ └── buildsrc.jar │ │ └── tmp │ │ │ └── jar │ │ │ └── MANIFEST.MF │ └── src │ │ └── main │ │ └── groovy │ │ └── com.me.plugin │ │ ├── JarZipUtil.groovy │ │ ├── MyInject.groovy │ │ ├── MyPlugin.groovy │ │ └── MyTransform.groovy ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── savior │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── wangxiandeng │ │ │ └── savior │ │ │ ├── IPatchBox.java │ │ │ ├── PatchLoader.java │ │ │ └── Savior.java │ │ └── res │ │ └── values │ │ └── strings.xml └── settings.gradle └── patch ├── com └── wangxiandeng │ └── saviortest │ ├── MainActivity$Patch.class │ └── PatchBox.class ├── patch.jar └── patch_dex.dex.jar /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/README.md -------------------------------------------------------------------------------- /SaviorTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.gitignore -------------------------------------------------------------------------------- /SaviorTest/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/compiler.xml -------------------------------------------------------------------------------- /SaviorTest/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /SaviorTest/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/gradle.xml -------------------------------------------------------------------------------- /SaviorTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/misc.xml -------------------------------------------------------------------------------- /SaviorTest/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/modules.xml -------------------------------------------------------------------------------- /SaviorTest/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /SaviorTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SaviorTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/build.gradle -------------------------------------------------------------------------------- /SaviorTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /SaviorTest/app/src/androidTest/java/com/wangxiandeng/saviortest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/androidTest/java/com/wangxiandeng/saviortest/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /SaviorTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/assets/patch_dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/assets/patch_dex.jar -------------------------------------------------------------------------------- /SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/App.java -------------------------------------------------------------------------------- /SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/FileUtil.java -------------------------------------------------------------------------------- /SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/MainActivity.java -------------------------------------------------------------------------------- /SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/PatchUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/java/com/wangxiandeng/saviortest/PatchUtil.java -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SaviorTest/app/src/test/java/com/wangxiandeng/saviortest/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/app/src/test/java/com/wangxiandeng/saviortest/ExampleUnitTest.java -------------------------------------------------------------------------------- /SaviorTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/build.gradle -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build.gradle -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/JarZipUtil$_zipJar_closure1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/JarZipUtil$_zipJar_closure1.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/JarZipUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/JarZipUtil.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyInject$_injectDir_closure1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyInject$_injectDir_closure1.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyInject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyInject.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyPlugin.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1$_closure2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1$_closure2.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1$_closure3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1$_closure3.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform$_transform_closure1.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/classes/main/com/me/plugin/MyTransform.class -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/libs/buildsrc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/build/libs/buildsrc.jar -------------------------------------------------------------------------------- /SaviorTest/buildsrc/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /SaviorTest/buildsrc/src/main/groovy/com.me.plugin/JarZipUtil.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/src/main/groovy/com.me.plugin/JarZipUtil.groovy -------------------------------------------------------------------------------- /SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyInject.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyInject.groovy -------------------------------------------------------------------------------- /SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyPlugin.groovy -------------------------------------------------------------------------------- /SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyTransform.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/buildsrc/src/main/groovy/com.me.plugin/MyTransform.groovy -------------------------------------------------------------------------------- /SaviorTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/gradle.properties -------------------------------------------------------------------------------- /SaviorTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SaviorTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SaviorTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/gradlew -------------------------------------------------------------------------------- /SaviorTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/gradlew.bat -------------------------------------------------------------------------------- /SaviorTest/savior/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SaviorTest/savior/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/build.gradle -------------------------------------------------------------------------------- /SaviorTest/savior/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/proguard-rules.pro -------------------------------------------------------------------------------- /SaviorTest/savior/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SaviorTest/savior/src/main/java/com/wangxiandeng/savior/IPatchBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/src/main/java/com/wangxiandeng/savior/IPatchBox.java -------------------------------------------------------------------------------- /SaviorTest/savior/src/main/java/com/wangxiandeng/savior/PatchLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/src/main/java/com/wangxiandeng/savior/PatchLoader.java -------------------------------------------------------------------------------- /SaviorTest/savior/src/main/java/com/wangxiandeng/savior/Savior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/src/main/java/com/wangxiandeng/savior/Savior.java -------------------------------------------------------------------------------- /SaviorTest/savior/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/savior/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SaviorTest/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/SaviorTest/settings.gradle -------------------------------------------------------------------------------- /patch/com/wangxiandeng/saviortest/MainActivity$Patch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/patch/com/wangxiandeng/saviortest/MainActivity$Patch.class -------------------------------------------------------------------------------- /patch/com/wangxiandeng/saviortest/PatchBox.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/patch/com/wangxiandeng/saviortest/PatchBox.class -------------------------------------------------------------------------------- /patch/patch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/patch/patch.jar -------------------------------------------------------------------------------- /patch/patch_dex.dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HalfStackDeveloper/Savior/HEAD/patch/patch_dex.dex.jar --------------------------------------------------------------------------------