2017-02-25 26 views
2

Googleの機能を使用してGmailログインシステムを作成しようとしていますが、 MarkRecorderエラー:(25,13)解決に失敗しました:com.google.android.gms:play-services-auth:9.8.0

compile 'com.android.support:appcompat-v7:24.1.0' 
compile 'com.google.android.gms:play-services-auth:9.8.0' 
compile 'com.github.bumptech.glide:glide:3.7.0'** 

} プラグインを適用します:私は、このエラー

Error:(25, 13) Failed to resolve: com.google.android.gms:play-services-auth:9.8.0 

を持ってプロジェクトを同期するためにこれらは私が プロジェクトが行われ、編集セクションは「com.google.gms.google-サービスの

とモジュール:アプリ

dependencies { 
    classpath 'com.android.tools.build:gradle:2.1.2' 
    classpath 'com.google.gms:google-services:3.0.0' 

    // NOTE: Do not place your application dependencies here; they belong 
    // in the individual module build.gradle files 
} 

答えて

0

は、あなたは、あなたのプロジェクトをコンパイルする前に、使用しているプレイ・サービス・ライブラリの依存関係の正しいバージョンをダウンロードする必要があります。これは、Android StudioにバンドルされているSDKマネージャを使用して行うことができます。 developers.google.comから

:あなたが戻って手動でアップグレードして喜んでいる場合を除き(9.8.0をダウンロードする必要がある場合がありますので、

1. Start Android Studio. 
2. On the Tools menu, click Android > SDK Manager. 
3. Update the Android Studio SDK Manager: click SDK Tools, expand Support Repository, select Google Repository, and then click OK. 

グーグルの現在のバージョンは、サービスが10.2.0で再生)。詳細についてはthis linkをご確認ください。

関連する問題