package ru.bsuirhelper.android.appwidget;
import android.annotation.TargetApi;
import android.content.Intent;
import android.os.Build;
import android.widget.RemoteViewsService;
/**
* Created by Влад on 15.10.13.
*/
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class ScheduleWidgetService extends RemoteViewsService {
@Override
public RemoteViewsFactory onGetViewFactory(Intent intent) {
return new ScheduleFactoryViews(getApplicationContext(), intent);
}
}