Expo eas build + ios + firebase pods error

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,
            },
          },
        },
      ],

WordPress disable auto update

Disable auto updates for wordpress to prevent broken content/plugins, but could be vulnerable to security patches.

Add the define code to your wp-config.php
The code has to be below the /*Add any custom values.

/* Add any custom values between this line and the "stop editing" line. */
define( 'WP_AUTO_UPDATE_CORE', false );


/* That's all, stop editing! Happy publishing. */