package com.rthoni.stssaguenay.ui.widget; import android.content.Intent; import android.widget.RemoteViewsService; /** * Created by robin on 12/13/16. */ public class AppWidgetService extends RemoteViewsService { @Override public RemoteViewsFactory onGetViewFactory(Intent intent) { return new AppWidgetFactory(this.getApplicationContext(), intent); } }