8

I am trying to implement the solution in link

Require to import these:

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;

i cannot compile because eclipse does not recognize

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

Have also updated the SDK and the google API to the latest (4.3)

Still not able to import the package.

4

3 回答 3

10

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

于 2013-07-25T09:39:24.680 回答
3
  1. 将 Google Play 服务导入为C:\adt-bundle-windows-x86_64-20130729\adt-bundle-windows-x86_64-20130729\sdk\extras\google\google_play_services

  2. 选择库项目

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

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

于 2013-09-02T17:14:36.800 回答
1

要添加所有答案,请确保 MainProject 和库项目中的 android-support-v4.jar 相同。如果发现它们不同,则库项目 jars 不会被添加到您的 apk 中,并且您可能会收到 class not found 错误。

于 2014-12-25T19:19:59.730 回答