mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-24 03:16:00 +00:00
fix unable to uninstall app in Dhizuku mode
fix unable to push CI builds to Telegram
This commit is contained in:
17
app/src/main/java/android/content/pm/IPackageInstaller.java
Normal file
17
app/src/main/java/android/content/pm/IPackageInstaller.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package android.content.pm;
|
||||
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
|
||||
import androidx.annotation.Keep;
|
||||
|
||||
@Keep
|
||||
public interface IPackageInstaller extends IInterface {
|
||||
@Keep
|
||||
abstract class Stub extends Binder implements IPackageInstaller {
|
||||
public static IPackageInstaller asInterface(IBinder obj) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user