I want to open calendar from a widget app, for version API 15 or higher it works with this code:
RemoteViews updateViews = new RemoteViews(context.getPackageName(),
R.layout.medium_layout);
Intent calendar = Intent.makeMainSelectorActivity(
Intent.ACTION_MAIN,
Intent.CATEGORY_APP_CALENDAR);
PendingIntent pendingIntent2 = PendingIntent.getActivity(context, 0,
calendar, 0);
updateViews.setOnClickPendingIntent(R.id.calendar, pendingIntent2);
but for versions before 15 it doesn´t work, any help?
Thank you
There is no official Calendar API before Android 4.0