mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
fix for NPE w/ null version numbers
This commit is contained in:
@ -337,8 +337,8 @@ final public class AndrolibResources {
|
||||
|
||||
public void setVersionInfo(Map<String, String> map) {
|
||||
if (map != null) {
|
||||
mVersionCode = map.get("versionCode").toString();
|
||||
mVersionName = map.get("versionName").toString();
|
||||
mVersionCode = map.get("versionCode");
|
||||
mVersionName = map.get("versionName");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user