You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All my SHA keys are properly put in firebase, even the release ones found on google play. I have no idea what more to try. I hope i'm not duplicate posting with the post on the issue I made a couple hours ago.. If you need any more info about my project ask.
(I know there are a lot of similar discussions but none of them were helpful to me I even tried to ask ChatGPT)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
hello i'm trying to setup appcheck mainly for Phone Authentication (and enforcing it on firestore too) but I ran into multiple issues:
I got no idea on how to do it.
I tried some methods such as
`async function registerAppCheck() {
const rnfbProvider = firebase.appCheck().newReactNativeFirebaseAppCheckProvider();
rnfbProvider.configure({
android: {
provider: 'playIntegrity',
debugToken: 'hidden',
},
apple: {
provider: !DEV ? 'debug' : 'appAttestWithDeviceCheckFallback',
debugToken: 'hidden',
},
});
firebase.appCheck().initializeAppCheck({ provider: rnfbProvider, isTokenAutoRefreshEnabled: true })

.then((res) => {
console.log("app check initialized: " + res);
}).catch((error) => {
console.error("app check failed: " + error);
});
}`
but it logs
All my SHA keys are properly put in firebase, even the release ones found on google play. I have no idea what more to try. I hope i'm not duplicate posting with the post on the issue I made a couple hours ago.. If you need any more info about my project ask.
(I know there are a lot of similar discussions but none of them were helpful to me I even tried to ask ChatGPT)
Beta Was this translation helpful? Give feedback.
All reactions