如何将特定的Google Play Services api添加到Eclipse android项目中

时间:2015-09-25 18:05:23

标签: android eclipse google-play-services google-oauth

我只需要一个OAuth 2.0令牌来授权使用Google for REST API的请求。所以我需要导入谷歌播放服务sdk。 特别是:

Google Account Login    com.google.android.gms:play-services-identity:8.1.0

我正在使用eclipse我只想导入Google帐户登录api,但没有关于如何操作的说明。

如果没有解决方案,我如何获取android studio项目依赖项中引用的Jar https://developers.google.com/android/guides/setup

1 个答案:

答案 0 :(得分:1)

我猜有一个解决方案。试试这个:

  1. 转到" android_sdk \ extras \ google \ m2repository \ com \ google \ android \ gms \ play-services-identity \ 8.1.0 \"
  2. 复制" play-services-identity-8.1.0.aar"到你的eclipse项目&libs目录。
  3. 打开" project.properties"文件并添加以下行:android.libraries.reference.1 = libs / play-services-identity-8.1.0 /并运行应用程序。
  4. 如果它不起作用,请尝试使用com.google.android.gms设置项目:play-services-identity:8.1.0在android studio中,导入/导出gradle项目在/用于eclipse。它很可能会自动解析包含的依赖项以使用eclipse。

    希望它有所帮助。