Fix widgets interaction before June patch

This commit is contained in:
Suphon Thanakornpakapong
2022-06-22 17:49:14 +07:00
parent 45f73a9c7b
commit c471e08b94
11 changed files with 106 additions and 5 deletions

View File

@@ -0,0 +1,4 @@
package android.app;
public interface IActivityTaskManager {
}

View File

@@ -0,0 +1,17 @@
package android.app;
import android.os.IBinder;
import android.os.RemoteException;
import android.view.RemoteAnimationAdapter;
import dev.rikka.tools.refine.RefineAs;
@RefineAs(IActivityTaskManager.class)
public interface IActivityTaskManagerHidden {
void registerRemoteAnimationForNextActivityStart(
String packageName, RemoteAnimationAdapter adapter, IBinder launchCookie) throws RemoteException;
void registerRemoteAnimationForNextActivityStart(
String packageName, RemoteAnimationAdapter adapter) throws RemoteException;
}

View File

@@ -0,0 +1,4 @@
package android.view;
public class RemoteAnimationAdapter {
}