我在我的 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 仍然给我这个警告。有谁知道为什么?