Ngara K
Ngara K

Reputation: 11

Firebase Admin SDK in Android App

I have developed my client side application using Android studio and it went well. But I have an issue, I want to have an Android App with Administrator Privileges. On my Client Side I have used FirebaseFirestore but on Admin SDK documents I did not see this option for FirebaseFirestore. And I can't find classes for FirebaseFirestore or references instead I found Cloud Firestore. Do I have to go back to FirebaseDatabase in my Client Side to implement this in Admin Side?

Upvotes: 1

Views: 1654

Answers (1)

user5718327
user5718327

Reputation:

Firebase Admin does support Firestore, the Admin API just provide the Admin app to have full privileges (as you mentioned), it will just work the same way like your client app but instead of using User credential, you just have to replace it with the service account.

Firebase Admin Setup

Upvotes: 1

Related Questions