mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-03-23 12:40:51 +00:00
14 lines
299 B
Java
14 lines
299 B
Java
package a;
|
|
|
|
import com.topjohnwu.magisk.utils.PatchAPK;
|
|
import com.topjohnwu.signing.BootSigner;
|
|
|
|
import androidx.annotation.Keep;
|
|
|
|
@Keep
|
|
public class a extends BootSigner {
|
|
public static boolean patchAPK(String in, String out, String pkg) {
|
|
return PatchAPK.patch(in, out, pkg);
|
|
}
|
|
}
|