I'm trying to add firebase cloud storage to my app. Below is the app build.gradle. But it says: Failed to resolve: com.google.firebase:firebase-core:16.0.1. Why? There is no firebase-core in the dependencies at all.
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.louise.udacity.mydict"
minSdkVersion 15
targetSdkVersion 27
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:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.google.firebase:firebase-storage:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
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.cloud:google-cloud-storage:1.31.0'
implementation 'com.firebase:firebase-jobdispatcher:0.8.5'
}
apply plugin: 'com.google.gms.google-services'
This is rare, but there is a chance your project's gradle offline mode is enable, disable offline mode with the following steps;
If this doesn't work leave a comment describing your Logcat response and i'll try to help more.
In my case it was resolved by changing the compileSdkVersion and targetSdkVersion from 26 to 27
From the docs:-
Add:
and in top level gradle file use the latest version of google play services:
https://firebase.google.com/support/release-notes/android
https://bintray.com/android/android-tools/com.google.gms.google-services
Note:
You need to add the
google()
repo in the top level gradle file, as specified in the firebase docs and also it should be beforejcenter()
:https://firebase.google.com/docs/android/setup
I was able to solve the issue by following these steps-
1.) This error occurs when you didn't connect your project to firebase. Do that from Tools->Firebase if you are using Android studio version 2.2 or above.
2.) Make sure you have replaced the
compile
withimplementation
independencies in app/build.gradle
3.) Include your firebase dependency from the firebase docs. Everything should work fine now
Since May 23, 2018 update, when you're using a firebase dependency, you must include the
firebase-core
dependency, too.If adding it, you still having the error, trying to update the gradle plugin in your
gradle-wrapper.properties
to 4.5 version:and resync the project.
Add maven { url "https://maven.google.com" } to your root level build.gradle file