I am using google-api-client to access google calendar.
Below are the permissions in my manifest file.
<uses-permission
android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.GET_ACCOUNTS" />
<uses-permission
android:name="android.permission.USE_CREDENTIALS" />
<uses-permission
android:name="android.permission.MANAGE_ACCOUNTS" />
but I get this warning on first start:
The following one or more applications request permission to access your account now and in the future.
- Google ..... @ gmail.com
- Google Calendar
Do you want to allow this request?
screenshot:

Is there any way to avoid this message?
source
share