2017-04-03 76 views
0
compile 'com.google.firebase:firebase-database:10.2.0' 

添加此依賴項後,會出現問題。在此之前,GoogleApiClient工作正常。我刪除了這個依賴關係,問題就解決了。 GoogleApiClient和Firebase有衝突嗎?請幫忙。添加Firebase依賴項後無法解析符號'GoogleApiClient'

編輯:搖籃文件:

apply plugin: 'com.android.application' 
apply plugin: 'com.google.gms.google-services' 

android { 
    compileSdkVersion 23 
    buildToolsVersion '25.0.0' 

    defaultConfig { 
     applicationId "application.id" 
     minSdkVersion 16 
     targetSdkVersion 22 
     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:23.2.1' 
     compile 'com.android.support:design:23.2.1' 
     compile 'com.google.android.gms:play-services:8.4.0' 
     compile 'com.google.android.gms:play-services-identity:8.4.0' 
     compile 'com.google.android.gms:play-services-ads:8.4.0' 
     compile 'com.google.android.gms:play-services-gcm:8.4.0' 
     compile 'com.google.android.gms:play-services-auth:8.4.0' 
     compile 'com.google.android.gms:play-services-location:8.4.0' 
     compile 'com.google.firebase:firebase-database:10.2.0' 
} 
+0

發表您的gradle這個 – rafsanahmad007

+0

我加了我的gradle產出 – Sky

回答

0

GoogleApiClient和火力點的數據庫將工作,如果添加下面的依賴關係,

compile 'com.google.android.gms:play-services-auth:10.2.0' 
compile 'com.google.firebase:firebase-database:10.2.0' 

火力數據庫的依賴,不會影響GoogleApiClient

請保持同一個版本的firebase &谷歌播放服務API(10.2.0)

請重新檢查你已經設定了一切如下指導,

https://firebase.google.com/docs/android/setup

相關問題