I need to find libproject folder to import Google Play Services to Eclipse, to import google play services on a project.
I install Google Play services 31 in "Android SDK Manager". When access to downloaded path I find:
I last version I have libproject:
¿Where is libproject to import google play services 31 in my Eclipse project?
答案 0 :(得分:2)
Google Play services no longer ships a libproject
directory and does not officially support development in Eclipse.
You'll have to use an older version or find an unofficial workaround if you want to use (the now completely deprecated) Eclipse.
答案 1 :(得分:0)
我也遇到了同样的问题因为我还在使用Eclipse。我能够使用以下步骤在我的项目中集成Play Services修订版31:
启动Android SDK Manager并选择安装Extras> Google Repository。
导航至android-sdk \ extras \ google \ m2repository \ com \ google \ android \ gms \ play-services-games \ VERSION \
将.AAR文件的扩展名更改为.ZIP,并将内容解压缩到临时位置。
转到解压缩的文件夹并创建一个名为“lib”的新目录,并将“classes.jar”文件移入其中。
将文件夹作为现有Android代码导入Eclipse。导入后,您可能需要将项目设置为Library并设置适当的编译API级别。
现在回到android-sdk \ extras \ google \ m2repository \ com \ google \ android \ gms \ play-services-games \ VERSION \文件夹并使用任何文本编辑器打开pom文件并查看在依赖部门,看看它依赖哪些其他图书馆。
对于您在前面步骤中确定为依赖项的新库,再次重复这些步骤。
在确定项目所需的所有库之前,您必须继续检查所有依赖项。例如,我的项目使用广告,云端保存和排行榜/成就,所以我做了这个过程,最后有9个库导入Eclipse(参见附件截图)。