mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-05 02:22:55 +01:00
only show -aapt info in verbose mode
This commit is contained in:
parent
e9196c28b8
commit
aebdf7a519
1
CHANGES
1
CHANGES
@ -1,5 +1,6 @@
|
|||||||
v1.5.2 (TBA)
|
v1.5.2 (TBA)
|
||||||
-Fixed (issue #299) - output smali filename errors to screen during rebuild instead of filestream
|
-Fixed (issue #299) - output smali filename errors to screen during rebuild instead of filestream
|
||||||
|
-Only show the --aapt / -a info in verbose mode.
|
||||||
|
|
||||||
v1.5.1 PR3 (Released December 23 - 2012) Codename: Pre Release 3
|
v1.5.1 PR3 (Released December 23 - 2012) Codename: Pre Release 3
|
||||||
-Reverted "Prevents removal of <uses-sdk> on decompile, but then throws warning on rebuild (issue #366)"
|
-Reverted "Prevents removal of <uses-sdk> on decompile, but then throws warning on rebuild (issue #366)"
|
||||||
|
@ -276,7 +276,10 @@ final public class AndrolibResources {
|
|||||||
if (aaptFile.canRead() && aaptFile.exists()) {
|
if (aaptFile.canRead() && aaptFile.exists()) {
|
||||||
aaptFile.setExecutable(true);
|
aaptFile.setExecutable(true);
|
||||||
cmd.add(aaptFile.getPath());
|
cmd.add(aaptFile.getPath());
|
||||||
LOGGER.info(aaptFile.getPath() + " being used as aapt location.");
|
|
||||||
|
if (flags.get("verbose")) {
|
||||||
|
LOGGER.info(aaptFile.getPath() + " being used as aapt location.");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
LOGGER.warning("aapt location could not be found. Defaulting back to default");
|
LOGGER.warning("aapt location could not be found. Defaulting back to default");
|
||||||
cmd.add("aapt");
|
cmd.add("aapt");
|
||||||
|
Loading…
Reference in New Issue
Block a user