Firebase Admin SDK Causes Gradle "Dependency Error"
I'm trying to add the Firebase Admin SDK to my project. When I add this: compile 'com.google.firebase:firebase-admin:4.1.1' It gives me a 'Dependency Error' When I sync. The stac
Solution 1:
You can't use the Firebase Admin SDK inside an Android app. You have to write a different Java program for that, which normally resides on a server you control.
See also this question for other problems that can come up if you try to use firebase-admin from within an Android app.
Solution 2:
do u have server project or android? Firebase Admin SDK Doc it says "Add the Firebase Admin SDK to your Server"
check out this Answer
Post a Comment for "Firebase Admin SDK Causes Gradle "Dependency Error""