mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-05 02:22:55 +01:00
ignore errors during Manifest alterations, to prevent crashing of apktool
This commit is contained in:
parent
6df03fc81c
commit
6475ef8a77
@ -182,8 +182,7 @@ final public class AndrolibResources {
|
||||
StreamResult result = new StreamResult(new File(filePath));
|
||||
transformer.transform(source, result);
|
||||
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
|
||||
}
|
||||
}
|
||||
|
||||
@ -226,8 +225,7 @@ final public class AndrolibResources {
|
||||
StreamResult result = new StreamResult(new File(filePath));
|
||||
transformer.transform(source, result);
|
||||
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -268,8 +266,7 @@ final public class AndrolibResources {
|
||||
StreamResult result = new StreamResult(new File(filePath));
|
||||
transformer.transform(source, result);
|
||||
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
} catch (SAXException | ParserConfigurationException | IOException | TransformerException ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user