2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 21:55:10 +00:00

Re-add file removed by mistake

This commit is contained in:
Albert Vaca Cintora
2023-05-29 15:02:58 +02:00
parent 46ecd2b05f
commit 14270ea71a

View File

@@ -0,0 +1,12 @@
package org.kde.kdeconnect.Plugins.RunCommandPlugin;
import android.content.Intent;
import android.widget.RemoteViewsService;
public class RunCommandWidgetDataProviderService extends RemoteViewsService {
@Override
public RemoteViewsFactory onGetViewFactory(Intent intent) {
return new RunCommandWidgetDataProvider(this, intent);
}
}