Reputation: 305
I'm switching from realtime database to firestore and I keep getting the same error:
Failed to resolve: com.google.firebase:firebase-firestore:16.0.1
I have looked at similar questions on this site but still haven't been able to fix this problem. Here is the code from my app gradle:
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.marykate.marykatefordefyp"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
//dependency for using firebase database
implementation 'com.google.firebase:firebase-database:16.0.1'
//dependency for email and password authentication
implementation 'com.google.firebase:firebase-auth:16.0.1'
//dependency for cloud storage
implementation 'com.google.firebase:firebase-storage:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-firestore:16.0.1'
}
and the code from my project gradle is as follows:
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'com.google.gms:google-services:4.0.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Could anyone help me with this?
Upvotes: 2
Views: 12454
Reputation: 11
please user these dependency it works for me
implementation 'com.google.firebase:firebase-auth:16.0.5'
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.google.firebase:firebase-firestore:18.0.0'
Upvotes: 0
Reputation: 7701
I was using
compile 'com.google.firebase:firebase-core:16.0.8'
and I received the same error message that you report in your question. It worked for me using this:
compile 'com.google.firebase:firebase-core:9.0.2'
Upvotes: 0
Reputation: 371
I was facing the problem failed to resolve firebase-firestore-16.0.1
when working with Firebase Authentication
and Cloud Firestore
.I changed the Gradle Dependencies
to the following listed below:-
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-auth:16.2.0'
implementation 'com.google.firebase:firebase-firestore:18.1.0'
Sometimes there is compatibility issues with Gradle dependencies
.Try using the latest versions.You can find the latest Firebase gradle dependencies
here:latest Firebase gradle dependencies
Upvotes: 3
Reputation: 138814
To solve this, please change the following lines of code:
implementation 'com.google.firebase:firebase-core:16.0.1'
//dependency for using firebase database
implementation 'com.google.firebase:firebase-database:16.0.1'
//dependency for email and password authentication
implementation 'com.google.firebase:firebase-auth:16.0.1'
//dependency for cloud storage
implementation 'com.google.firebase:firebase-storage:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-firestore:16.0.1'
to
implementation 'com.google.firebase:firebase-core:16.0.6'
//dependency for using firebase database
implementation 'com.google.firebase:firebase-database:16.0.6'
//dependency for email and password authentication
implementation 'com.google.firebase:firebase-auth:16.1.0'
//dependency for cloud storage
implementation 'com.google.firebase:firebase-storage:16.0.5'
//implementation 'com.google.firebase:firebase-auth:16.0.1' //Removed
implementation 'com.google.firebase:firebase-firestore:18.0.0
Please don't also forget to add the as the last line in your file:
apply plugin: 'com.google.gms.google-services'
Upvotes: 4