Android google calendar permission issue

2019-06-11 14:38发布

I am using google-api-client to access Google calendar.

Following 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 am getting such a warning message on the first run:


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 a way to avoid this message?

1条回答
forever°为你锁心
2楼-- · 2019-06-11 15:37

No you cannot avoid this message, this is to let the users know what applications are doing with their data.

查看更多
登录 后发表回答