无法在新的Android Studio Project上解析符号GooglePlayServicesClient

时间:2015-03-27 14:45:30

标签: android android-studio google-play-services

我刚刚安装了Android Studio 1.1.0并创建了一个新项目。我是通过登录活动创建的,包括Google+登录信息。

项目一打开,我就会在PlusBaseActivity.java中看到很多错误。这些似乎源于com.google.android.gms.common.GooglePlayServiceClient未被导入的事实。

我根本没有更改代码,并想知道为什么它默认不运行。我怎样才能导入这个?

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "us.grahn.logintest"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.google.android.gms:play-services:7.0.0'
}

1 个答案:

答案 0 :(得分:41)

GooglePlayServicesClient类已被弃用了一段时间。有了最新的GooglePlayServices版本,我相信他们完全摆脱了它。

然而,AndroidStudio中的演示项目仍然使用旧的API,因此无法编译:(

基本上,与GooglePlayServices交谈时,您应立即使用GoogleApiClient(如此处所述https://developer.android.com/google/auth/api-client.html

类似的东西:

GoogleApiClient googleApiClient = new GoogleApiClient.Builder(this)
            .addApi(Plus.API)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .build();

................

googleApiClient.connect();