Bu derlemeleri proje build.gradle için kullanın
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
}
ve bunu uygulama düzeyi build.gradle dosyasının sonuna (bağımlılıklardan sonra) koyun.
apply plugin: 'com.google.gms.google-services'
Neden sonunda (ve başında değil) koymak hatayı çözer hiçbir fikrim yok.
5/1/2016 DÜZENLE
Tamam… Böylece çözümümle karşılaştığınız tüm sorunlara son vermeye çalışın
Bu benim son uygulama seviyesi notum
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'
ve bu benim son proje seviyesi notum
// 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()
}
}
Bunu kendi not dosyalarınızla karşılaştırın ve yazdıklarımdan farklı değerleri ekleyin veya değiştirin.
compile 'com.google.android.gms:play-services-auth:8.4.0
ayrıca gerekli olacaktır.