2016-11-27 10 views
1

Google Playサービスを更新した後、このエラーが発生しています。なぜこれが起こっているのか分かりません。 Firebaseを初めて実装しようとしています。ここ は私のbuild.gradleエラー:エラー: ':app:processDebugGoogleServices'タスクの実行に失敗しました。 >欠落しているapi_key/current_keyオブジェクト

buildscript { 
    repositories { 
     jcenter() 
} 
dependencies { 
    classpath 'com.android.tools.build:gradle:2.1.0' 
    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 
} 
} 
allprojects { 
repositories { 
    jcenter() 
} 
} 
task clean(type: Delete) { 
delete rootProject.buildDir 
} 

で、私のアプリレベルのGradleは、問題がどこにあるか誰も私を教えてくださいすることができ、そう

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 25 
buildToolsVersion "23.0.3" 

defaultConfig { 
    applicationId "com.deepak.firebasechatapp" 
    minSdkVersion 11 
    targetSdkVersion 25 
    versionCode 1 
    versionName "1.0" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 
testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:25.0.0' 
compile 'com.android.support:design:25.0.0' 

compile 'com.github.bumptech.glide:glide:3.6.1' 

compile 'com.google.firebase:firebase-database:9.6.1' 
} 
apply plugin: 'com.google.gms.google-services' 

のですか?

答えて

0

てみ再同期> Firebaseとあなたのサービスを選択し、ヒット開きアシスタントに「Firebaseへの接続を」ツール - するfirebase 行くと、あなたのAPIキーを

私のためにそれを解決
関連する問題