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.
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:
Then, when the dialog launches, click "Launch Standalone SDK Manager" at the bottom left of the dialog:
To make sure nothing other than what we want gets updated/installed, click "Deselect All":
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".
When they're done installing, the error will go away.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With