Today I had some trouble rebuilding my IOS project via Expo’s eas while implementing Firebase SDK.
Solution for my case:
1.) install expo-build-properties
npx expo install expo-build-properties
2.) Add the “expo-build-properties” part in your app.json/app.config.js
plugins: [
"@react-native-firebase/app",
"@react-native-firebase/messaging",
[
"expo-build-properties",
{
ios: {
useFrameworks: "static",
podfileProperties: {
"use_modular_headers!": true,
},
},
},
],