mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
Fixed bug in a AndrolibSmali.
This commit is contained in:
parent
03a98d6a1c
commit
c95742f66f
@ -26,7 +26,7 @@ import org.jf.smali.main;
|
||||
/**
|
||||
* @author Ryszard Wiśniewski <brut.alll@gmail.com>
|
||||
*/
|
||||
class AndrolibSmali {
|
||||
public class AndrolibSmali {
|
||||
public void baksmali(File apkFile, File dir) throws AndrolibException {
|
||||
baksmali(apkFile.getAbsolutePath(), dir.getAbsolutePath());
|
||||
}
|
||||
@ -45,6 +45,6 @@ class AndrolibSmali {
|
||||
}
|
||||
|
||||
public void smali(String dir, String dexFile) throws AndrolibException {
|
||||
main.main(new String[]{"smali", dir, "-o", dexFile});
|
||||
main.main(new String[]{dir, "-o", dexFile});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user