Skip to main content

Failed to resolve: com.google.firebase:firebase-core:9.0.0

If you are upgraded to Android Studio 2.2.2 and using lower version liberary of firebase then you might face the error Failed to resolve: com.google.firebase:firebase-messaging:9.0.0 , Error:(39, 13) Failed to resolve: com.google.firebase:firebase-analytics:9.0.0
Error:(38, 13) Failed to resolve: com.google.firebase:firebase-core:9.0.0


The solution of this is the error is to change the library version to latest version of firebase(9.6.0) in your build.gradle file. Make sure to all other dependency and android plugin are also up to date.
   compile 'com.google.firebase:firebase-ads:9.6.0'  
compile 'com.google.firebase:firebase-core:9.6.0'
compile 'com.google.firebase:firebase-analytics:9.6.0'
compile 'com.google.firebase:firebase-messaging:9.6.0'

After adding the dependency to the latest version click on sync project.

There may be the issue with google repository so install the latest repository as given in below screen shots.

Firebase Error

If it is resolved then good otherwise we can check the further troubleshooting steps as given below.

Maybe you were not able to edit the file from Android Studio because of slow response then you can kill the Android Studio and open the build.gradle file in any text editor and then modify the file and start the Android Studio again. It takes some time any sync your project and you will be ready. But still your problem is not resolved and you are getting error similar as given below then you may need to modify your other dependency to latest version 25

Then change the compile and target version to 25 and click on install and sync project. It will start downloading the latest version SDK and sync the project again.

To install:
- Android SDK Platform 25 (platforms;android-25)

Preparing "Install Android SDK Platform 25".
Downloading https://dl.google.com/android/repository/platform-25_r01.zip.

Preparing "Install Android SDK Platform 25".
Downloading https://dl.google.com/android/repository/platform-25_r01.zip
"Install Android SDK Platform 25" ready.
Finishing "Install Android SDK Platform 25"
Installing Android SDK Platform 25 in C:UsersPKAppDataLocalAndroidSdkplatformsandroid-25
"Install Android SDK Platform 25" complete.
Once done all steps above click on Finish button.

Again maybe they are not able to get the build tool for SDK 25 and again you get the error click on install and it will start downloading the latest build tool.

To install:
- Android SDK Build-Tools 25 (build-tools;25.0.0)

Preparing "Install Android SDK Build-Tools 25".
Downloading https://dl.google.com/android/repository/build-tools_r25-windows.zip

You may get this error due to some network problem, you check it by clicking on check update from help menu whether its working or not. If you are getting any network error while clicking on check update then it is must be due to the network problem.

If all above given way does not work then one more stuff of this is removing all firebase dependency from your build.gadle file then sync the project, definitely, you will get lots of error after that. But once sync the project with firebase then add them again and try to sync the project.

Comments

Popular posts from this blog

Flutter How to Start Android Activity from Flutter View

Flutter and Dart is an excellent combination for creating the UI, but for accessing the platform-specific service we need to open platform-specific activity. So lets in this article we will explore how to start an android activity and access the service from Flutter View. Create a Project for this Android Activity Flutter View Demo Create a Project From File menu select the New Flutter Project Enter the project name Select the AndroidX support and click on next After the above, we step click on Finish We will have the following project structure created. Create the Second Activity in Android Just go to the android folder and open it in separate windows. We will have the following project structure. Create the Activity Just right-click on the Kotlin folder and create a blank activity from the menu. If you create the activity then you may be required to upgrade the Gradle and do some import. So Just click on update and wait for the project s

Kotlin Parcelable Array Objects Send To Activity

We know that IPC (Inter Process Communication) between the activity is an extremely important part of any application development. We often required that we need to send some data to other activity. For example, we may be required to send an array of data, data could be an Integer, String, Long, Double, Float or any other custom data objects. So, In this example, we are going to learn how to implement the Kotlin Parcelable Array object to send the data from one activity to second activity. What is Parcel? The parcel class is designed as a high-performance IPC transport. A Parcel can contain both flattened data that will be unflattened on the other side of the IPC, and references to live IBinde r objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel. Create Kotlin Parcelable Array Objects Parcelable is API for placing the arbitrary objects into the Parcel. In Actual in android app development, Parcelable is an interface

Scan and List All Available WiFi Network In Android

In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. You May Like Below Topic: How to Read and Write JSON data using GSON WP Android App using REST and volley WP Android App using REST and volley part2 Implementation of SwipeRefreshLayout in RecyclerView Create Amazing Bottom Navigation Bar Without Any External Library Introduction In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. We will add this functionality to our existing Demo app " Video Gallery ". If you would like to check out t