mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-22 01:37:34 +01:00
removing dead code, code cleanup
This commit is contained in:
parent
ed46fb746d
commit
484feea284
@ -223,31 +223,31 @@ public class Main {
|
|||||||
new Androlib().build(new File(appDirName), outFile, flags, mOrigApk, mAaptPath);
|
new Androlib().build(new File(appDirName), outFile, flags, mOrigApk, mAaptPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void cmdInstallFramework(String[] args)
|
private static void cmdInstallFramework(String[] args)
|
||||||
throws AndrolibException {
|
throws AndrolibException {
|
||||||
String tag = null;
|
String tag = null;
|
||||||
String frame_path = null;
|
String frame_path = null;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
switch (args.length) {
|
switch (args.length) {
|
||||||
case 4:
|
case 4:
|
||||||
if (args[2].equalsIgnoreCase("--frame-path")) {
|
if (args[2].equalsIgnoreCase("--frame-path")) {
|
||||||
i++;
|
i++;
|
||||||
} else {
|
} else {
|
||||||
throw new InvalidArgsError();
|
throw new InvalidArgsError();
|
||||||
|
}
|
||||||
|
case 3:
|
||||||
|
frame_path = args[2 + i];
|
||||||
|
case 2:
|
||||||
|
if (!(args[1].equalsIgnoreCase("--frame-path"))) {
|
||||||
|
tag = args[1];
|
||||||
|
}
|
||||||
|
case 1:
|
||||||
|
new Androlib().installFramework(new File(args[0]), tag, frame_path);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
case 3:
|
|
||||||
frame_path = args[2 + i];
|
|
||||||
case 2:
|
|
||||||
if (!(args[1].equalsIgnoreCase("--frame-path"))) {
|
|
||||||
tag = args[1];
|
|
||||||
}
|
|
||||||
case 1:
|
|
||||||
new Androlib().installFramework(new File(args[0]), tag,frame_path);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new InvalidArgsError();
|
throw new InvalidArgsError();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void cmdPublicizeResources(String[] args)
|
private static void cmdPublicizeResources(String[] args)
|
||||||
throws InvalidArgsError, AndrolibException {
|
throws InvalidArgsError, AndrolibException {
|
||||||
|
@ -455,37 +455,11 @@ public class Androlib {
|
|||||||
mAndRes.aaptPackage(outApk, null, null,
|
mAndRes.aaptPackage(outApk, null, null,
|
||||||
new File(appDir, APK_DIRNAME), assetDir, null, flags, mAaptPath);
|
new File(appDir, APK_DIRNAME), assetDir, null, flags, mAaptPath);
|
||||||
|
|
||||||
|
// retain signature
|
||||||
|
// aapt r (remove)
|
||||||
/* check for re-insert */
|
// aapt a (add)
|
||||||
if (flags.get("injectOriginal")) {
|
if (flags.get("injectOriginal")) {
|
||||||
//try {
|
|
||||||
//LOGGER.info("Building resources into original apk file...");
|
|
||||||
LOGGER.info("Injecting contents isn't ready yet. Sorry :(");
|
LOGGER.info("Injecting contents isn't ready yet. Sorry :(");
|
||||||
//ZipFile editOrig = new ZipFile(mOrigApkFile.getAbsoluteFile());
|
|
||||||
|
|
||||||
// no compression levels, paras
|
|
||||||
//ZipParameters parameters = new ZipParameters();
|
|
||||||
//parameters.setCompressionMethod(Zip4jConstants.COMP_STORE);
|
|
||||||
//parameters.setCompressionLevel(0);
|
|
||||||
//parameters.setIncludeRootFolder(true);
|
|
||||||
//parameters.setRootFolderInZip("/");
|
|
||||||
|
|
||||||
// add res folder
|
|
||||||
//editOrig.addFolder(new File(appDir, APK_DIRNAME + "/res").getAbsolutePath(), parameters);
|
|
||||||
//System.out.println("file: " + new File(appDir, APK_DIRNAME + "/res").getAbsolutePath());
|
|
||||||
|
|
||||||
// add assets, if there
|
|
||||||
//if (assetDir != null) {
|
|
||||||
//editOrig.addFolder(new File(appDir, APK_DIRNAME + "/assets").getAbsolutePath(), parameters);
|
|
||||||
//}
|
|
||||||
|
|
||||||
// add resources.arsc
|
|
||||||
// parameters.setFileNameInZip("resources.arsc");
|
|
||||||
// editOrig.addFile(new File(appDir, "resources.arsc"), parameters);
|
|
||||||
//} catch(ZipException ex) {
|
|
||||||
// throw new AndrolibException(ex);
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user