version:1.5

fix:迁移到奥乐云平台
add:
This commit is contained in:
2021-12-10 14:49:23 +08:00
parent 2462bafa85
commit ed8310da47
713 changed files with 6024 additions and 4805 deletions

View File

@@ -0,0 +1,17 @@
package com.aoleyun.systemui.plugins;
import android.view.ViewGroup;
import com.android.systemui.plugins.Plugin;
import com.android.systemui.plugins.annotations.ProvidesInterface;
/**
* Implement this interface to wrap the widget on the first home screen, e.g. to add new content.
*/
@ProvidesInterface(action = FirstScreenWidget.ACTION, version = FirstScreenWidget.VERSION)
public interface FirstScreenWidget extends Plugin {
String ACTION = "com.android.systemui.action.PLUGIN_FIRST_SCREEN_WIDGET";
int VERSION = 1;
void onWidgetUpdated(ViewGroup widgetView);
}