处理部分 4.7.4 遗留的空指针异常和数组越界异常

This commit is contained in:
juntao
2021-03-29 10:39:11 +08:00
parent a81b0a1603
commit a2569cf876
4 changed files with 20 additions and 16 deletions

View File

@ -352,7 +352,7 @@ public class PackageUtils {
ApkMeta apkMeta = apkParser.getApkMeta();
apkParser.close();
return apkMeta.getPackageName();
} catch (Exception e) {
} catch (Throwable e) {
e.printStackTrace();
return null;
}