skip to Main Content

Firebase AppCheck Error 403: App attestation failed

I have added appcheck to my Flutter app. However, this does not work properly. I use Android and have entered all the keys correctly. However, every time I start the app, the following messages appear: IntegrityService : requestIntegrityToken(IntegrityTokenRequest{nonce=<<long code>>, cloudProjectNumber=<<project…

VIEW QUESTION

Firebase – how can i use serverTimestamp in angular/Fire in the compat mode

I have tried import firebase from 'firebase/compat/app'; import 'firebase/compat/firestore'; const firestore = firebase.firestore; this.form = this.builder.group({ items:[data.items, null], dateReported:[firestore.FieldValue.serverTimestamp(), Validators.required], ....}) i get this error: ERROR FirebaseError: Function WriteBatch.update() called with invalid data. Unsupported field value: a custom sl object…

VIEW QUESTION

Firebase – Android FCM push notification not launching the application on click

Im sending a notification via the FCM legacy api like so: // POST https://fcm.googleapis.com/fcm/send { "to": "<device-token>", "notification": { "title": "Test!", "body": "testing", "mutable_content": true, "sound": "Tri-tone", "click_action": "https://example.com/1234" } } Manifest: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cx.myapp.android"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".MainApplication"…

VIEW QUESTION
Back To Top
Search