mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 23:36:47 +00:00
Fix widgets interaction before June patch
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package android.app;
|
||||
|
||||
public interface IActivityTaskManager {
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package android.view;
|
||||
|
||||
public class RemoteAnimationAdapter {
|
||||
}
|
||||
Reference in New Issue
Block a user