2

我尝试像本教程
一样在我的 android 应用程序中创建连接 google+, 但我被困在这里

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

错误:com.google.android.gms.plus.plus 无法解决

Android Studio 版本:0.4.6 操作系统版本:Windows 7 Ultimate 64 bits

我像这样集成了谷歌播放服务

在此处输入图像描述

4

1 回答 1

0

为确保您放置了正确的库,请尝试查看 build.gradle 是否在依赖项部分编译您的库。通过右键单击添加为库再次删除您的库添加。构建-> 再次清除项目构建希望这有帮助

于 2014-03-03T08:41:22.927 回答