Skip to content

Commit 79fc41c

Browse files
docs(app, expo): updating app.json related to useFrameworks (invertase#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 <[email protected]>
1 parent ff32fd3 commit 79fc41c

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

docs/index.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,20 @@ The following is an example `app.json` to enable the React Native Firebase modul
216216
},
217217
"ios": {
218218
"googleServicesFile": "./GoogleService-Info.plist",
219-
"bundleIdentifier": "com.mycorp.myapp",
220-
"useFrameworks": "static"
219+
"bundleIdentifier": "com.mycorp.myapp"
221220
},
222221
"plugins": [
223222
"@react-native-firebase/app",
224223
"@react-native-firebase/auth",
225-
"@react-native-firebase/crashlytics"
224+
"@react-native-firebase/crashlytics",
225+
[
226+
"expo-build-properties",
227+
{
228+
"ios": {
229+
"useFrameworks": "static"
230+
}
231+
}
232+
]
226233
]
227234
}
228235
}

0 commit comments

Comments
 (0)