google-play-services_lib无法正常工作

时间:2014-05-20 09:07:47

标签: android eclipse google-play-services

我想在我的应用程序中使用谷歌地图

我添加了google-play-services_lib作为项目并设置为库,然后我将google-play-services_lib添加到我的项目中

如果我再次检查它标记为红色图标

enter image description here

你能帮忙解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

我假设你没有以正确的方式导入库。为了工作,库项目和你的主项目需要在同一个工作区。将google-play-services导入eclipse时,请确保已选中Copy Projects into workspace选项,如下图所示,

enter image description here

否则,您也可以将google-play-services库项目粘贴到工作区中,然后从那里导入。

答案 1 :(得分:0)

您不再需要在项目中添加Google Play服务库。添加

compile 'com.google.android.gms:play-services:4.3.23'

在依赖项下完成工作。

编辑: 如果您不知道如何在Eclipse中添加依赖项,请查看here。 在Android Studio(或任何其他基于Gradle的IDE)中,只需打开build.gradle并在依赖项括号之间添加上述行。