ใช้การขึ้นต่อกันเหล่านี้สำหรับ project 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/2559
ตกลง ... ดังนั้นพยายามที่จะยุติปัญหาทั้งหมดที่พวกคุณต้องเผชิญกับทางออกของฉัน
นี่คือระดับแอปสุดท้ายของฉัน
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
จะต้องถูก