导入com.google.android.gms.*;时出错;



我正在尝试在链接中实现解决方案

需要导入这些:

import com.google.android.gms.common.ConnectionResult;  
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks; 
import com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener; import com.google.android.gms.location.ActivityRecognitionClient;

我无法编译,因为eclipse无法识别

 "com.google.android.gms."......

还将SDK和google API更新为最新版本(4.3)

仍然无法导入程序包。

按照本指南设置Google Play Services SDK。这是一个客户端库,您必须从SDK管理器中获得它。下载后,将库作为项目添加。

  1. 将Google Play服务导入为C:adt-bundle-windows-x86_64-20130729adt-bundle-windows-x86_64-20130729sdkextrasgooglegoogle_play_services

  2. 选择libproject

  3. 选择您的项目,转到属性,然后在Android下添加Google Play服务库。

注意:您必须从SDK Manager安装Google Play服务。

要添加到所有答案中,请确保android-support-v4.jar在MainProject和库项目中都是相同的。如果发现它们不同,库项目将不会被添加到您的apk中,并且您可能会得到未找到类的错误。

相关内容

  • 没有找到相关文章

最新更新