Android的谷歌日历权限问题

问题描述:

我使用谷歌的API客户端访问谷歌日历。

以下是我的清单文件的权限。

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.


  • 谷歌
    ..... @ gmail.com

  • 谷歌日历

你要允许这个要求吗?

截图:

有没有办法来避免这个消息?

is there a way to avoid this message?

没有你不能避免此消息,这是为了让用户知道哪些应用程序正在使用他们的数据做什么。

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