diff --git a/.idea/caches/gradle_models.ser b/.idea/caches/gradle_models.ser index 1b85e96..0b18b57 100644 Binary files a/.idea/caches/gradle_models.ser and b/.idea/caches/gradle_models.ser differ diff --git a/app/build.gradle b/app/build.gradle index 4122f03..b1d2a87 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "me.tvcfish.xposed.aidehelper" minSdkVersion 15 targetSdkVersion 28 - versionCode 11000 - versionName "1.0" + versionCode 11001 + versionName "1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { diff --git a/app/release/app-release.apk b/app/release/app-release.apk index 59e0b3a..8e5c393 100644 Binary files a/app/release/app-release.apk and b/app/release/app-release.apk differ diff --git a/app/release/output.json b/app/release/output.json index 0076ccc..ca6adc5 100644 --- a/app/release/output.json +++ b/app/release/output.json @@ -1 +1 @@ -[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":11000,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] \ No newline at end of file +[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":11001,"versionName":"1.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] \ No newline at end of file diff --git a/app/src/main/java/me/tvcfish/xposed/aidehelper/hook/SwitchVersion.java b/app/src/main/java/me/tvcfish/xposed/aidehelper/hook/SwitchVersion.java index fe0e8e7..b0b77a0 100644 --- a/app/src/main/java/me/tvcfish/xposed/aidehelper/hook/SwitchVersion.java +++ b/app/src/main/java/me/tvcfish/xposed/aidehelper/hook/SwitchVersion.java @@ -66,6 +66,10 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable { File phoneGapAppNew = new File(aideHelper + "PhoneGapAppNew.zip"); param.setResult(new FileInputStream(phoneGapAppNew)); break; + case "AIDEWebSamples.zip": + File aideWebSamples = new File(aideHelper + "AIDEWebSamples.zip"); + param.setResult(new FileInputStream(aideWebSamples)); + break; } } }); diff --git a/app/src/main/res/raw/update_log b/app/src/main/res/raw/update_log index a3fd165..dd094b6 100644 --- a/app/src/main/res/raw/update_log +++ b/app/src/main/res/raw/update_log @@ -1,3 +1,6 @@ +Version: 1.1 +1.解决Web中缺少Samples模版的问题@FlenkeAustin + Version: 1.0 1.已开源至GitHub(欢迎Start) 2.开源库引用说明更新