├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── gradle.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── jyuesong │ │ └── flutter_hotpatchdemo │ │ ├── App.java │ │ ├── MainActivity.java │ │ └── PatchActivity.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.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 ├── art └── result.gif ├── flutter_hotpatch_module_f ├── .gitignore ├── .metadata ├── README.md ├── assets │ └── icon_second.png ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hotpatch ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── build.gradle ├── consumer-rules.pro ├── local.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── jyuesong │ │ └── flutter_hotpatch │ │ ├── FileUtils.java │ │ ├── FlutterHotPatchMain.java │ │ ├── FlutterHotPatchManager.java │ │ ├── activity │ │ └── HotPatchFlutterActivity.java │ │ └── loader │ │ ├── FlutterHotPatchLoader.java │ │ ├── ResourceCleaner.java │ │ ├── ResourceExtractor.java │ │ └── ResourcePaths.java │ └── res │ └── values │ └── strings.xml ├── key.jks ├── patch ├── app-release.apk ├── hotpatch-resource.zip └── libapp_fix.so └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/jyuesong/flutter_hotpatchdemo/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/java/com/jyuesong/flutter_hotpatchdemo/App.java -------------------------------------------------------------------------------- /app/src/main/java/com/jyuesong/flutter_hotpatchdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/java/com/jyuesong/flutter_hotpatchdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jyuesong/flutter_hotpatchdemo/PatchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/java/com/jyuesong/flutter_hotpatchdemo/PatchActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/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/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/art/result.gif -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/.gitignore -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/.metadata -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/README.md -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/assets/icon_second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/assets/icon_second.png -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/lib/main.dart -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/pubspec.lock -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/pubspec.yaml -------------------------------------------------------------------------------- /flutter_hotpatch_module_f/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/flutter_hotpatch_module_f/test/widget_test.dart -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hotpatch/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /hotpatch/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /hotpatch/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/gradle.xml -------------------------------------------------------------------------------- /hotpatch/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/misc.xml -------------------------------------------------------------------------------- /hotpatch/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/modules.xml -------------------------------------------------------------------------------- /hotpatch/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /hotpatch/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/.idea/workspace.xml -------------------------------------------------------------------------------- /hotpatch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/build.gradle -------------------------------------------------------------------------------- /hotpatch/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hotpatch/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/local.properties -------------------------------------------------------------------------------- /hotpatch/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/proguard-rules.pro -------------------------------------------------------------------------------- /hotpatch/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FileUtils.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FlutterHotPatchMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FlutterHotPatchMain.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FlutterHotPatchManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/FlutterHotPatchManager.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/activity/HotPatchFlutterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/activity/HotPatchFlutterActivity.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/FlutterHotPatchLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/FlutterHotPatchLoader.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourceCleaner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourceCleaner.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourceExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourceExtractor.java -------------------------------------------------------------------------------- /hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourcePaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/java/com/jyuesong/flutter_hotpatch/loader/ResourcePaths.java -------------------------------------------------------------------------------- /hotpatch/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/hotpatch/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/key.jks -------------------------------------------------------------------------------- /patch/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/patch/app-release.apk -------------------------------------------------------------------------------- /patch/hotpatch-resource.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/patch/hotpatch-resource.zip -------------------------------------------------------------------------------- /patch/libapp_fix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiang111/flutter_hotpatch/HEAD/patch/libapp_fix.so -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':hotpatch' 2 | --------------------------------------------------------------------------------