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:
If you read documentation they are indicating you update your latest Google Repository in the Android SDK manager
So just go to Android SDK Manager
and install the latest version of below two libraries
1-Google Play Services
2-Google Repository
Check the image from documentation:
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.
Getting a "Could not find" error? Make sure you have the latest Google Repository in the Android SDK manager.
To reseolved the problem;
May be you are not giving the right repo.
repositories {
maven { url 'https://maven.fabric.io/public' }
}
讨论(0)
-
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
讨论(0)