mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 13:17:43 +02:00
usage redo fixed #403
This commit is contained in:
@ -192,13 +192,13 @@ public class Androlib {
|
||||
}
|
||||
|
||||
public void build(File appDir, File outFile,
|
||||
HashMap<String, Boolean> flags, ExtFile origApk, String aaptPath)
|
||||
HashMap<String, Boolean> flags, String aaptPath)
|
||||
throws BrutException {
|
||||
build(new ExtFile(appDir), outFile, flags, origApk, aaptPath);
|
||||
build(new ExtFile(appDir), outFile, flags, aaptPath);
|
||||
}
|
||||
|
||||
public void build(ExtFile appDir, File outFile,
|
||||
HashMap<String, Boolean> flags, ExtFile origApk, String aaptPath)
|
||||
HashMap<String, Boolean> flags, String aaptPath)
|
||||
throws BrutException {
|
||||
|
||||
mAaptPath = aaptPath;
|
||||
|
@ -56,9 +56,8 @@ public class BuildAndDecodeTest {
|
||||
|
||||
LOGGER.info("Building testapp.apk...");
|
||||
File testApk = new File(sTmpDir, "testapp.apk");
|
||||
ExtFile blank = null;
|
||||
new Androlib().build(sTestOrigDir, testApk,
|
||||
BuildAndDecodeTest.returnStock(), blank, "");
|
||||
BuildAndDecodeTest.returnStock(),"");
|
||||
|
||||
LOGGER.info("Decoding testapp.apk...");
|
||||
ApkDecoder apkDecoder = new ApkDecoder(testApk);
|
||||
|
Reference in New Issue
Block a user