Registering Custom Widgets

To register custom widgets, you can override the registerCustomWidgets() to register the widget data of your custom widgets by using:

@Override
public void registerCustomWidgets() {
    WidgetManager.registerCustomWidget(MyWidget.DATA);
}

Last updated

Was this helpful?