mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-24 03:16:00 +00:00
initialize Dhizuku, get DevicePolicyManager using binder wrapper
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package android.app.admin;
|
||||
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
public interface IDevicePolicyManager extends IInterface {
|
||||
abstract class Stub extends Binder implements IDevicePolicyManager {
|
||||
public static IDevicePolicyManager asInterface(IBinder obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user