0
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
These are my permissions, I’m doubtful if I need to notify the user to allow or not, I was seeing that from API 23 you need to do this If I need to, how do I do it?
Can you tell me when I should use READ_CALENDAR or WRITE_CALENDAR? I’m using it as a precaution because I use Calendar.getInstance();
– user123503
Permissions READ_CALENDAR and WRITE_CALENDAR are only required when the user’s calendar data is accessed/modified. The Calendar class has nothing to do with it, it serves to manipulate "instants in time", so it does not need these permissions.
– ramaral
Thank you very much!!! Now I understand perfectly!
– user123503
Thank you very much!!! Now I understand perfectly!
– user123503