2

我想在我的項目中使用firebase,它需要.gradle文件中的最新版本的依賴關係,但是當我將版本設置爲9.2.0的最新版本時,噸,並給出錯誤,但當我把它設置爲以前的版本,它的工作原來的版本是9.0.2。這是我的.gradle文件:將Firebase升級到9.2.0後同步項目時出錯

apply plugin: 'com.android.application' 

    android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.3' 

    defaultConfig { 
    applicationId "naqibshayea.afghanbazaar" 
    minSdkVersion 15 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0" 
} 
buildTypes 
     { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 
    repositories { 
    mavenCentral() 
    } 
dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
compile 'com.android.support:appcompat-v7:23.3.0' 
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2' 
compile 'com.android.support:design:23.3.0' 
compile 'com.android.support:recyclerview-v7:23.3.0' 
compile 'com.android.support:support-v4:23.3.0' 
compile 'com.mcxiaoke.volley:library:1.0.19' 
compile 'com.firebase:firebase-client-android:2.5.2+' 
compile 'com.facebook.android:facebook-android-sdk:[4,5)' 
compile 'com.google.firebase:firebase-core:9.2.0' 
compile 'com.google.firebase:firebase-auth:9.2.0' 
compile 'com.google.firebase:firebase-database:9.2.0' 
compile 'com.google.firebase:firebase-config:9.2.0' 
} 
apply plugin: 'com.google.gms.google-services' 

,這是它顯示了錯誤:我有同樣的問題

Error:(37, 13) Failed to resolve: com.google.firebase:firebase-config:9.2.0 
Error:(35, 13) Failed to resolve: com.google.firebase:firebase-auth:9.2.0 
Error:(36, 13) Failed to resolve: com.google.firebase:firebase-database:9.2.0 
Error:(34, 13) Failed to resolve: com.google.firebase:firebase-core:9.2.0 
+0

對不起愚蠢的問題..你更新了Firebase SDK /庫嗎?由於它正在查找9.0.2,但未能找到9.2.0,因此它似乎沒有更新。 – W0rmH0le

+0

是它更新我不知道它爲什麼不起作用 –

+0

你添加了根級別'build.gradle'文件這個'classpath'com.google.gms:google-services:3.0.0'。 – Ironman

回答

5

我有同樣的問題,這就是我解決它的方法。

  1. 啓動的和Android SDK經理
  2. 更新的谷歌Play服務的最新版本,在這種情況下版本
  3. 更新的谷歌存儲庫到最新版本,在這種情況下版本

然後同步你的項目和問題應消失。

0

- 以「com.google.firebase編譯:火力-AUTH:9.2。 0'-拋出異常。

1

這是最近發佈的實際圖書館。因此,您必須將Google Play Service和Google Repository更新爲最新版本。請參閱 Android Developers

1

將Google Play服務和Google Repository從Android Sdk Manager更新到最近的版本。在我的例子中,Google Play服務(33)和Google Repository(34)。解決了同步問題。