You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
make AppWidgetProvider not abstract
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
package android.appwidget;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Slog;
|
||||
|
||||
public abstract class AppWidgetProvider extends BroadcastReceiver {
|
||||
public class AppWidgetProvider extends BroadcastReceiver {
|
||||
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
Slog.i("AppWidgetProvider", "onReceive(" + intent + ") called");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user