From 79fc41c815fcb1127b7a69436cf6aea002016d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burhan=20Y=C4=B1lmaz?= Date: Wed, 31 Jan 2024 18:51:43 +0300 Subject: [PATCH] docs(app, expo): updating app.json related to useFrameworks (#7600) * docs(app, expo): updating app.json related to useFrameworks - useFrameworks property is not allowed in `ios:{...}` outside of the plugins. * style(lint): `yarn format:markdown` fixes a tiny spacing style deviation that irritatingly only shows up on linux (where CI runs) but does not show up on macOS (where most develop) --------- Co-authored-by: Mike Hardy --- docs/index.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 6b612a52a9..9176e4b073 100644 --- a/docs/index.md +++ b/docs/index.md @@ -216,13 +216,20 @@ The following is an example `app.json` to enable the React Native Firebase modul }, "ios": { "googleServicesFile": "./GoogleService-Info.plist", - "bundleIdentifier": "com.mycorp.myapp", - "useFrameworks": "static" + "bundleIdentifier": "com.mycorp.myapp" }, "plugins": [ "@react-native-firebase/app", "@react-native-firebase/auth", - "@react-native-firebase/crashlytics" + "@react-native-firebase/crashlytics", + [ + "expo-build-properties", + { + "ios": { + "useFrameworks": "static" + } + } + ] ] } }