react-native-mediapipe icon indicating copy to clipboard operation
react-native-mediapipe copied to clipboard

Unable to build on iOS

Open MobileDevPronisi opened this issue 11 months ago • 6 comments

Image

Here is the dependencies list

"dependencies": { "@expo/vector-icons": "^14.0.4", "@react-native-firebase/app": "^21.7.0", "@react-native-firebase/messaging": "^21.7.0", "@react-navigation/bottom-tabs": "^7.2.0", "@react-navigation/native": "^7.0.14", "@reduxjs/toolkit": "^2.5.0", "@shopify/react-native-skia": "^1.10.2", "expo": "~52.0.26", "expo-blur": "~14.0.2", "expo-build-properties": "~0.13.2", "expo-cellular": "~7.0.2", "expo-checkbox": "~4.0.1", "expo-constants": "~17.0.4", "expo-dev-client": "~5.0.9", "expo-font": "~13.0.3", "expo-haptics": "~14.0.1", "expo-image": "~2.0.4", "expo-linking": "~7.0.4", "expo-router": "^4.0.17", "expo-splash-screen": "~0.29.21", "expo-status-bar": "~2.0.1", "expo-symbols": "~0.2.1", "expo-system-ui": "~4.0.7", "expo-video": "~2.0.5", "expo-web-browser": "~14.0.2", "react": "18.3.1", "react-dom": "18.3.1", "react-native": "0.76.6", "react-native-gesture-handler": "~2.20.2", "react-native-mediapipe": "^0.6.0", "react-native-mmkv": "^3.2.0", "react-native-otp-entry": "^1.8.2", "react-native-radio-buttons-group": "^3.1.0", "react-native-reanimated": "~3.16.7", "react-native-safe-area-context": "4.12.0", "react-native-screens": "~4.4.0", "react-native-svg": "15.8.0", "react-native-toast-message": "^2.2.1", "react-native-vision-camera": "^4.6.3", "react-native-web": "~0.19.13", "react-native-webview": "13.12.5", "react-native-worklets-core": "^1.5.0", "react-redux": "^9.2.0", "redux-persist": "^6.0.0" }

MobileDevPronisi avatar Jan 21 '25 05:01 MobileDevPronisi

I met the same issue, are there any updates?

RonGGG avatar Feb 12 '25 06:02 RonGGG

Getting the same issue, I'm on RN 0.79.2 and I'm on old arch(ENV['RCT_NEW_ARCH_ENABLED'] = '0' in Podfile)

Image

Alexadru avatar Oct 24 '25 15:10 Alexadru

@Alexadru Any updates? i'm facing a similar issue

cod3kid avatar Nov 02 '25 14:11 cod3kid

@Alexadru

I was able to successfully build on iOS. I believe the issue is caused by use_frameworks due to @react-native-firebase/app.

cod3kid avatar Nov 12 '25 02:11 cod3kid

I am getting instant crash on ios device on app launch

mantu-bit avatar Nov 13 '25 11:11 mantu-bit

I managed to fix it.

plugin 'cocoapods-user-defined-build-types'

and

  pod 'Firebase',           :build_type => :static_framework
  pod 'FirebaseCoreInternal',   :build_type => :static_framework
  pod 'FirebaseAuth',           :build_type => :static_framework
  pod 'FirebaseFirestore',      :build_type => :static_framework
  pod 'FirebaseFirestoreInternal', :build_type => :static_framework
  pod 'GoogleUtilities',        :build_type => :static_framework

cod3kid avatar Nov 26 '25 22:11 cod3kid