无法解析com.google.android.gms.plus.Plus类

时间:2014-02-14 22:31:09

标签: java android eclipse google-plus

我似乎无法从Google Play服务库解析Plus类。我已经通过Eclipse将Google Play库作为Android库项目导入到项目中。我也是从入门页面开始遵循基本的example

我的onCreate目前是:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
    .addConnectionCallbacks(this)
    .addOnConnectionFailedListener(this)
    .addApi(Plus.API, null)
    .addScope(Plus.SCOPE_PLUS_LOGIN)
    .build();
}

Eclipse标记Plus类名称,因为它无法解析它们,因此代码不会构建。

4 个答案:

答案 0 :(得分:8)

谢谢NickT。我刚刚更新了Google Play服务,并且附带了该类的附加课程。

答案 1 :(得分:1)

这可能会解决问题

mGoogleApiClient = new GoogleApiClient.Builder(this) .addConnectionCallbacks(this) .addOnConnectionFailedListener(this) .addApi(Plus.API) .addScope(Plus.SCOPE_PLUS_LOGIN) .build();

答案 2 :(得分:0)

您是否在清单中设置了元数据?

getting started guide中指出的所有步骤应该是您需要的一切。

答案 3 :(得分:-1)

在app / build.gradle中添加:

编译'com.google.android.gms:play-services:8.1.0'