skip to Main Content

onSchedule eventType for Firebase Extension?

I decided to upgrade my extension to use 2nd generation Cloud Functions. I changed my cloud function from pubsub.schedule to onSchedule. In extensions.yaml I have to define resources.properties.eventTrigger.eventType. However I am not able to find any hints in the documentation:…

VIEW QUESTION

Email update in Firebase Authentication – Kotlin

I want the user to be able to update their email address from within the app. I wrote the following code to update email in Firebase Authentication. val user = firebaseUser.currentUser!! val credential = EmailAuthProvider .getCredential(currentEmail, currentPassword) user.reauthenticate(credential) .addOnCompleteListener {…

VIEW QUESTION
Back To Top
Search