Skip to content

Commit

Permalink
解决Web Samples模版无法导入的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
ikws4 committed Feb 21, 2019
1 parent 1825c6d commit 94309f6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
Binary file modified .idea/caches/gradle_models.ser
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/release/output.json
Original file line number Diff line number Diff line change
@@ -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":{}}]
[{"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":{}}]
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
});
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/raw/update_log
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version: 1.1
1.解决Web中缺少Samples模版的问题@FlenkeAustin

Version: 1.0
1.已开源至GitHub(欢迎Start)
2.开源库引用说明更新
Expand Down

0 comments on commit 94309f6

Please sign in to comment.