mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-04 18:12:54 +01:00
Add spaces where missing to make logic easier to read
- refs: no issue
This commit is contained in:
parent
bca474272e
commit
d1857102dd
@ -235,7 +235,7 @@ public class Androlib {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
Directory in = apkFile.getDirectory();
|
Directory in = apkFile.getDirectory();
|
||||||
if(in.containsFile("AndroidManifest.xml")) {
|
if (in.containsFile("AndroidManifest.xml")) {
|
||||||
in.copyToDir(originalDir, "AndroidManifest.xml");
|
in.copyToDir(originalDir, "AndroidManifest.xml");
|
||||||
}
|
}
|
||||||
if (in.containsDir("META-INF")) {
|
if (in.containsDir("META-INF")) {
|
||||||
@ -248,7 +248,7 @@ public class Androlib {
|
|||||||
|
|
||||||
public void writeMetaFile(File mOutDir, MetaInfo meta)
|
public void writeMetaFile(File mOutDir, MetaInfo meta)
|
||||||
throws AndrolibException {
|
throws AndrolibException {
|
||||||
try{
|
try {
|
||||||
meta.save(new File(mOutDir, "apktool.yml"));
|
meta.save(new File(mOutDir, "apktool.yml"));
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
throw new AndrolibException(ex);
|
throw new AndrolibException(ex);
|
||||||
@ -413,7 +413,7 @@ public class Androlib {
|
|||||||
LOGGER.info("Checking whether sources has changed...");
|
LOGGER.info("Checking whether sources has changed...");
|
||||||
}
|
}
|
||||||
if (apkOptions.forceBuildAll || isModified(smaliDir, dex)) {
|
if (apkOptions.forceBuildAll || isModified(smaliDir, dex)) {
|
||||||
LOGGER.info("Smaling " + folder + " folder into " + filename +"...");
|
LOGGER.info("Smaling " + folder + " folder into " + filename + "...");
|
||||||
dex.delete();
|
dex.delete();
|
||||||
SmaliBuilder.build(smaliDir, dex, mMinSdkVersion);
|
SmaliBuilder.build(smaliDir, dex, mMinSdkVersion);
|
||||||
}
|
}
|
||||||
@ -573,11 +573,11 @@ public class Androlib {
|
|||||||
throws AndrolibException {
|
throws AndrolibException {
|
||||||
if (apkOptions.copyOriginalFiles) {
|
if (apkOptions.copyOriginalFiles) {
|
||||||
File originalDir = new File(appDir, "original");
|
File originalDir = new File(appDir, "original");
|
||||||
if(originalDir.exists()) {
|
if (originalDir.exists()) {
|
||||||
try {
|
try {
|
||||||
LOGGER.info("Copy original files...");
|
LOGGER.info("Copy original files...");
|
||||||
Directory in = (new ExtFile(originalDir)).getDirectory();
|
Directory in = (new ExtFile(originalDir)).getDirectory();
|
||||||
if(in.containsFile("AndroidManifest.xml")) {
|
if (in.containsFile("AndroidManifest.xml")) {
|
||||||
LOGGER.info("Copy AndroidManifest.xml...");
|
LOGGER.info("Copy AndroidManifest.xml...");
|
||||||
in.copyToDir(new File(appDir, APK_DIRNAME), "AndroidManifest.xml");
|
in.copyToDir(new File(appDir, APK_DIRNAME), "AndroidManifest.xml");
|
||||||
}
|
}
|
||||||
@ -600,7 +600,7 @@ public class Androlib {
|
|||||||
Map<String, String> files = meta.unknownFiles;
|
Map<String, String> files = meta.unknownFiles;
|
||||||
File tempFile = new File(outFile.getParent(), outFile.getName() + ".apktool_temp");
|
File tempFile = new File(outFile.getParent(), outFile.getName() + ".apktool_temp");
|
||||||
boolean renamed = outFile.renameTo(tempFile);
|
boolean renamed = outFile.renameTo(tempFile);
|
||||||
if(!renamed) {
|
if (!renamed) {
|
||||||
throw new AndrolibException("Unable to rename temporary file");
|
throw new AndrolibException("Unable to rename temporary file");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user