Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
Fix original AppComponentFactory search
Browse files Browse the repository at this point in the history
  • Loading branch information
nonnonstop committed Aug 31, 2022
1 parent 18c24c5 commit 0c5f890
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static Pair parseManifestFile(InputStream is) throws IOException {
int attrCount = parser.getAttributeCount();
for (int i = 0; i < attrCount; i++) {
String attrName = parser.getAttributeName(i);
int attrNameRes = parser.getAttributeNameResource(i);

String name = parser.getName();

Expand All @@ -39,7 +40,7 @@ public static Pair parseManifestFile(InputStream is) throws IOException {
}
}

if ("appComponentFactory".equals(attrName)) {
if ("appComponentFactory".equals(attrName) || attrNameRes == 0x0101057a) {
appComponentFactory = parser.getAttributeValue(i);
}

Expand Down

0 comments on commit 0c5f890

Please sign in to comment.