我想在我的项目中使用firebase,它需要.gradle文件中最新版本的依赖项,但是当我将版本设置为最新版本9.2.0时它不会出现错误但是当我设置它时以前的版本,以前的版本是9.0.2。这是我的.gradle文件:
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 :(得分:5)
我有同样的问题,这就是我解决它的方法。
然后同步您的项目,问题应该消失。
答案 1 :(得分:1)
这是最近的实际库版本。因此,您必须将Google Play服务和Google Repository更新为上一版本。请How to update the IDE and tools查看本教程Android Developers。
答案 2 :(得分:1)
将Google Play服务和Google Repository从Android Sdk Manager更新为最新版本。在我的案例中,Google Play服务(33)和Google Repository(34)。这解决了同步问题。