From 2aed4f76b97293911963455c021269a8498d15eb Mon Sep 17 00:00:00 2001 From: antoine-bernier-codems Date: Sat, 17 Jan 2026 14:05:25 -0500 Subject: [PATCH 1/2] Update App Check provider configuration example --- docs/app-check/usage/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app-check/usage/index.md b/docs/app-check/usage/index.md index 76ca5657f0..1e746b4ae3 100644 --- a/docs/app-check/usage/index.md +++ b/docs/app-check/usage/index.md @@ -174,9 +174,9 @@ So AppCheck module initialization is done in two steps in react-native-firebase To configure the react-native-firebase custom provider, first obtain one, then configure it according to the providers you want to use on each platform. ```javascript -import { ReactNativeFirebaseAppCheckProvider } from '@react-native-firebase/app-check'; +import { getApp } from '@react-native-firebase/app'; -const rnfbProvider = new ReactNativeFirebaseAppCheckProvider(); +const rnfbProvider = getApp().appCheck().newReactNativeFirebaseAppCheckProvider(); rnfbProvider.configure({ android: { provider: __DEV__ ? 'debug' : 'playIntegrity', From 164b04ed869eae513d8adc2ac078126f329efa18 Mon Sep 17 00:00:00 2001 From: antoine-bernier-codems Date: Sat, 17 Jan 2026 14:22:13 -0500 Subject: [PATCH 2/2] docs: Update App Check provider configuration example --- docs/app-check/usage/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/app-check/usage/index.md b/docs/app-check/usage/index.md index 1e746b4ae3..449a4acae3 100644 --- a/docs/app-check/usage/index.md +++ b/docs/app-check/usage/index.md @@ -177,6 +177,7 @@ To configure the react-native-firebase custom provider, first obtain one, then c import { getApp } from '@react-native-firebase/app'; const rnfbProvider = getApp().appCheck().newReactNativeFirebaseAppCheckProvider(); + rnfbProvider.configure({ android: { provider: __DEV__ ? 'debug' : 'playIntegrity',