mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-03 17:42:53 +01:00
chore: fix typo on resource message, drop shorthand if logic
This commit is contained in:
parent
3ba9838d08
commit
c7bb163834
@ -147,10 +147,11 @@ public class ResourcesDecoder {
|
|||||||
inApk = apkFile.getDirectory();
|
inApk = apkFile.getDirectory();
|
||||||
out = new FileDirectory(outDir);
|
out = new FileDirectory(outDir);
|
||||||
|
|
||||||
if (hasResources())
|
if (hasResources()) {
|
||||||
LOGGER.info("Decoding AndroidManifest.xml framework resources...");
|
LOGGER.info("Decoding AndroidManifest.xml with resources...");
|
||||||
else
|
} else {
|
||||||
LOGGER.info("Decoding AndroidManifest.xml with only framework resources...");
|
LOGGER.info("Decoding AndroidManifest.xml with only framework resources...");
|
||||||
|
}
|
||||||
InputStream inputStream = inApk.getFileInput("AndroidManifest.xml");
|
InputStream inputStream = inApk.getFileInput("AndroidManifest.xml");
|
||||||
OutputStream outputStream = out.getFileOutput("AndroidManifest.xml");
|
OutputStream outputStream = out.getFileOutput("AndroidManifest.xml");
|
||||||
fileDecoder.decodeManifest(inputStream, outputStream);
|
fileDecoder.decodeManifest(inputStream, outputStream);
|
||||||
|
Loading…
Reference in New Issue
Block a user