mirror of
https://github.com/TonyJiangWJ/Auto.js.git
synced 2026-06-18 21:10:19 +08:00
fix(app): BuildActivity crash when package.json is illegal
This commit is contained in:
parent
0ffb8d1ec5
commit
aa770b2ffb
@ -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;
|
||||
}
|
||||
|
||||
@ -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"}}]
|
||||
Loading…
Reference in New Issue
Block a user