Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to update the Firebase dependency(com.google.firebase)

I have Added Firebase to android app for push notification. I have updated build.gradle before i have used. Its working fine.

 compile 'com.google.firebase:firebase-messaging:9.2.0'

now i have updated to latest library but getting error.

 dependencies {
  //....
     compile 'com.google.firebase:firebase-core:10.0.1'       
  }

I had getting error at the time of Rebuild project

Error:A problem occurred configuring project ':app'. Could not resolve all dependencies for configuration ':app:_debugApkCopy'. Could not find com.google.firebase:firebase-core:10.0.1. Required by: DGApp:app:unspecified

Thank you in advance.

like image 730
Nitin Karande Avatar asked Nov 29 '16 05:11

Nitin Karande


2 Answers

You have to update your Google Play Services and Google Repository from the Standalone SDK Manager.

Edit: As of the latest version of Android Studio the Standalone SDK Manager is removed. You must go to the SDK Tools tab.

First off, open Android Studio and click this icon at the top toolbar:

Image

Then, when the dialog launches, click "Launch Standalone SDK Manager" at the bottom left of the dialog:

image

To make sure nothing other than what we want gets updated/installed, click "Deselect All":

Image

When the Standalone SDK Manager window opens, look for "Extras" and collapse it. You should see "Google Play Services" and "Google Repository" and on the right you should see "Update Available: {something}". Select these to items and click "Install".

Image

When they're done installing, the error will go away.

like image 120
Ali Bdeir Avatar answered Sep 21 '22 15:09

Ali Bdeir


Add the google-services plugin

In build.gradle file, to include the google-services plugin:

buildscript {
// ...
dependencies {
    // ...
    classpath 'com.google.gms:google-services:3.0.0'
}
}

Then, in your module Gradle file (usually the app/build.gradle), add the apply plugin line at the bottom of the file to enable the Gradle plugin:

apply plugin: 'com.android.application'

android {
// ...
 }

dependencies {
 // ...
compile 'com.google.firebase:firebase-core:10.0.1'

// Getting a "Could not find" error? Make sure you have
// the latest Google Repository in the Android SDK manager
 }

// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'

More details refer Firebase setup

like image 33
sasikumar Avatar answered Sep 22 '22 15:09

sasikumar