This commit is contained in:
isPointer
2026-06-11 09:28:23 +06:00
committed by GitHub
parent 7c7387d032
commit f28c927a63
@@ -1,6 +1,10 @@
package com.antik.utils;
import com.reandroid.apk.ApkModule;
import com.reandroid.archive.WriteProgress;
import java.io.File;
import java.io.IOException;
public class output {
public static String get_out(File i, String n) {
@@ -10,4 +14,11 @@ public class output {
}
return new File(p, n).getPath();
}
public static void write(ApkModule module, File file) throws IOException {
module.writeApk(file, new WriteProgress() {
@Override
public void onCompressFile(String path, int method, long length) {
}
});
}
}