Updated project directories for unified 'systemUI' folder (#5034)

This commit is contained in:
John Andrew Camu
2024-12-04 08:03:15 +08:00
committed by GitHub
parent 46f8e92df9
commit f9dbf334aa
293 changed files with 44 additions and 27 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);
}