Firebase Admin SDK for Android, methods not found

后端 未结 3 729
悲哀的现实
悲哀的现实 2020-11-27 07:27

I\'m building an Android app backed by a Firebase app, and I would like to be able to create an Admin account that can edit or delete other user accounts. If I\'m understand

3条回答
  •  长情又很酷
    2020-11-27 08:06

    Now FirebaseOptions class taken from other dependencies, May you can remove firebase components from other dependencies as below using exclude tag.

    compile 'com.google.firebase:firebase-admin:5.8.0' 
    
    compile ('com.google.firebase:firebase-messaging:9.6.1'){
        exclude module: 'firebase-common'
    }
    compile ('com.google.firebase:firebase-auth:9.6.1'){
        exclude module: 'firebase-common'
    }
    compile ('com.google.firebase:firebase-database:9.6.1'){
        exclude module: 'firebase-common'
    }
    compile ('com.firebase:firebase-client-android:2.5.0'){
        exclude module: 'firebase-common'
    }
    

提交回复
热议问题