2

我在我的 android 应用程序中使用 Google V2,它运行良好。然而,Eclipse 每次运行时都会给我这个警告:

Please add <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> into AndroidManifest.xml to ensure correct behavior under poor connectivity conditions.

但是我已经在清单中添加了这个权限,并且在我的 xml 中有这个权限:

<!-- More usses permissions, this is inside the <manifest> but outside the <application> tag -->
<uses-permission android:name="android.permission.ACCES_NETWORK_STATE" />

我想我已经设置正确了,但 eclipse 仍然给我这个警告。有谁知道为什么?

4

1 回答 1

2

有谁知道为什么?

你有android.permission.ACCES_NETWORK_STATE,这是不正确的。值为android.permission.ACCESS_NETWORK_STATE, 部分中有两个S字符ACCESS

于 2013-03-14T12:39:53.467 回答