We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1579b8d commit 01cd00aCopy full SHA for 01cd00a
1 file changed
apps/build-harness-expo/app.config.js
@@ -63,7 +63,12 @@ module.exports = ({config}) => {
63
favicon: './assets/favicon.png',
64
},
65
plugins: [
66
- ['expo-build-properties', {ios: {useFrameworks: 'static'}}],
+ [
67
+ 'expo-build-properties',
68
+ // force static linking of RNFBApp to avoid issues with the static library being linked to the app's main executable
69
+ // See: https://github.com/invertase/react-native-firebase/issues/8657
70
+ {ios: {useFrameworks: 'static', forceStaticLinking: ['RNFBApp']}},
71
+ ],
72
'@react-native-firebase/app',
73
'@react-native-firebase/analytics',
74
'@react-native-firebase/app-check',
0 commit comments