I\'m trying to code a Delete User method in my Android App, but I have some issues each time I execute it. This method will be executed when a user pushes the D
If you are using AuthUI or FirebaseAuth you can just do the following
AuthUI.getInstance().delete(context).addOnSuccessListener { }.addOnFailureListener{ }
OR
FirebaseAuth.getInstance().currentUser.delete().addOnSuccessListener...