Suppress XMLException

This commit is contained in:
REAndroid 2022-12-29 05:23:15 -05:00
parent 3aecd1a94c
commit 34b101f989

View File

@ -456,8 +456,10 @@ import java.util.Set;
}else {
EntryGroup group = entryStore.getEntryGroup(resourceId);
if(group==null){
throw new XMLException("Failed to decode attribute name: "
+ String.format("0x%08x", resourceId));
//Lets ignore such error until XML encoder implemented
//throw new XMLException("Failed to decode attribute name: "
//+ String.format("@0x%08x", resourceId));
name=String.format("@0x%08x", resourceId);
}else {
name=group.getSpecName();
}