Merge branch 'android14-release' into 14-dev

This commit is contained in:
MrSluffy
2023-12-13 17:08:28 +08:00
parent 5931c9afec
commit 32700b0100
994 changed files with 36404 additions and 15826 deletions

View File

@@ -0,0 +1,21 @@
package com.android.systemui.plugins;
import com.android.systemui.plugins.annotations.ProvidesInterface;
@ProvidesInterface(action = DozeServicePlugin.ACTION, version = DozeServicePlugin.VERSION)
public interface DozeServicePlugin extends Plugin {
String ACTION = "com.android.systemui.action.PLUGIN_DOZE";
int VERSION = 1;
public interface RequestDoze {
void onRequestShowDoze();
void onRequestHideDoze();
}
void onDreamingStarted();
void onDreamingStopped();
void setDozeRequester(RequestDoze requester);
}