When I write this code in android 4.1
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setData(CalendarContract.Events.CONTENT_URI);
startActivity(intent);
It gives me the following error:
Field requires API level 14 (current min is 8):
android.provider.CalendarContract$Events#CONTENT_URI
Please tell me how to solve this. Thanks
1 Answer