mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-06 10:05:54 +01:00
fix for NPE w/ null version numbers
This commit is contained in:
parent
be4ae922de
commit
d4b86475ca
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user