fix(app): BuildActivity crash when package.json is illegal

This commit is contained in:
hyb1996 2018-05-29 11:07:42 +08:00
parent 0ffb8d1ec5
commit aa770b2ffb
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ public class ProjectConfig {
public static ProjectConfig fromAssets(Context context, String path) {
try {
return fromJson(PFiles.read(context.getAssets().open(path)));
} catch (IOException e) {
} catch (Exception e) {
e.printStackTrace();
return null;
}
@ -64,7 +64,7 @@ public class ProjectConfig {
public static ProjectConfig fromFile(String path) {
try {
return fromJson(PFiles.read(path));
} catch (UncheckedIOException e) {
} catch (Exception e) {
e.printStackTrace();
return null;
}

View File

@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":263},"path":"commonRelease-4.0.0 Alpha.apk","properties":{"packageId":"org.autojs.autojs","split":"","minSdkVersion":"17"}}]
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":401},"path":"commonRelease-4.0.0 Alpha1.apk","properties":{"packageId":"org.autojs.autojs","split":"","minSdkVersion":"17"}}]