I'm currently implementing the calendar provider however i've stumbled upon a minor error that i'd like to prevent.
ContentResolver contentResolver = getContentResolver();
ContentValues contentValues = new ContentValues();
....
Uri uri = contentResolver.insert(CalendarContract.Events.CONTENT_URI, contentValues); // Error pops here
"Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with checkPermission
) or explicitly handle a potential `SecurityException"
What is the best method to prevent this error?
Any help will be appreciated.