We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeaa424 commit 84f200fCopy full SHA for 84f200f
xpatch/libs/ManifestEditor-1.0.1.jar renamed to xpatch/libs/ManifestEditor-aff5123.jar
101 KB
xpatch/src/main/java/com/storm/wind/xpatch/util/ManifestParser.java
@@ -40,6 +40,7 @@ public static Pair parseManifestFile(String filePath) {
40
int attrCount = parser.getAttributeCount();
41
for (int i = 0; i < attrCount; i++) {
42
String attrName = parser.getAttributeName(i);
43
+ int attrNameRes = parser.getAttributeNameResource(i);
44
45
String name = parser.getName();
46
@@ -50,7 +51,7 @@ public static Pair parseManifestFile(String filePath) {
50
51
}
52
53
if ("application".equals(name)) {
- if ("name".equals(attrName)) {
54
+ if ("name".equals(attrName) || attrNameRes == 0x01010003) {
55
applicationName = parser.getAttributeValue(i);
56
57
0 commit comments