Android calendar permission error

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:

enter image description here

Is there any way to avoid this message?

0
source share
1 answer

No, you cannot avoid this message so that users know what applications do with their data.

+2
source

All Articles