web-dev-qa-db-ja.com

新しいAndroid Studio ProjectでGooglePlayServicesClientシンボルを解決できません

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'
}
32
Dan Grahn

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();
41
Pavel Dudka