Skip to content

Commit

Permalink
docs(app, expo): updating app.json related to useFrameworks (#7600)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
burhanyilmaz and mikehardy authored Jan 31, 2024
1 parent ff32fd3 commit 79fc41c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
]
]
}
}
Expand Down

0 comments on commit 79fc41c

Please sign in to comment.