これらの依存関係をプロジェクトbuild.gradleに使用します
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
}
これをアプリレベルのbuild.gradleファイルの最後に置きます(依存関係の後)。
apply plugin: 'com.google.gms.google-services'
これを最後に(最初ではなく)配置するとエラーが解決される理由はわかりません。
編集5/1/2016
わかりました…それで皆さんが私の解決策で直面したすべての問題に終止符を打つことを試みます
これが最後のアプリレベルのグラドルです
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "your-app-name"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
jcenter()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.1.1'
compile 'com.mcxiaoke.volley:library:1.0.6@aar'
}
apply plugin: 'com.google.gms.google-services'
これが私の最終的なプロジェクトレベルのグラドルです
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
これをあなた自身のgradleファイルと比較して、私が書いたものとは異なる値を追加または変更してください。
compile 'com.google.android.gms:play-services-auth:8.4.0
も必要になります。