customerio / customerio-reactnative

MIT License
23 stars 11 forks source link

Cannot load module 'CioInternalCommon' built with SDK 'iphonesimulator16.4' when using SDK 'iphonesimulator17.0' #218

Closed dannyhw closed 9 months ago

dannyhw commented 9 months ago

SDK version: "customerio-expo-plugin": "^1.0.0-beta.13", "customerio-reactnative": "^3.3.1",

Environment: Production

Are logs available?

Describe the bug

When building in release mode via xcode I get this error:

Cannot load module 'CioInternalCommon' built with SDK 'iphonesimulator16.4' when using SDK 'iphonesimulator17.0': /Users/danielwilliams/Library/Developer/Xcode/DerivedData/ArroStaging-bwhufddsxieuyueferyyvumsbyll/Build/Products/Release-iphonesimulator/CustomerIOCommon/CioInternalCommon.swiftmodule/x86_64-apple-ios-simulator.swiftmodule

To Reproduce

Edit scheme in xcode to release mode and run a build

Expected behavior

build should succeed.

Screenshots

Additional context

If I change target to 'any ios device' i.e not a simulator build it seems to work.

levibostian commented 9 months ago

Sorry to hear you encountered this problem. Thanks for the details you provided thus far.

Could you please provide some more information for us?

dannyhw commented 9 months ago

@levibostian

I run

# to regenerate native code and run expo plugins
npx expo prebuild --clean
# to build the ios project
npx expo run:ios
# to open xcode
open ios/ArroStaging.xcworkspace

Then in xcode I edit scheme and choose release instead of debug and build the project within xcode

podfile podfile is generated by expo dev client ```ruby require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods") require 'json' podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {} ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0' ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR'] platform :ios, podfile_properties['ios.deploymentTarget'] || '13.0' install! 'cocoapods', :deterministic_uuids => false prepare_react_native_project! # If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set. # because `react-native-flipper` depends on (FlipperKit,...), which will be excluded. To fix this, # you can also exclude `react-native-flipper` in `react-native.config.js` # # ```js # module.exports = { # dependencies: { # ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}), # } # } # ``` flipper_config = FlipperConfiguration.disabled if ENV['NO_FLIPPER'] == '1' then # Explicitly disabled through environment variables flipper_config = FlipperConfiguration.disabled elsif podfile_properties.key?('ios.flipper') then # Configure Flipper in Podfile.properties.json if podfile_properties['ios.flipper'] == 'true' then flipper_config = FlipperConfiguration.enabled(["Debug", "Release"]) elsif podfile_properties['ios.flipper'] != 'false' then flipper_config = FlipperConfiguration.enabled(["Debug", "Release"], { 'Flipper' => podfile_properties['ios.flipper'] }) end end target 'ArroStaging' do # @generated begin AppsFlyer Strict Mode - expo prebuild (DO NOT MODIFY) sync-b29372208dd0dbd1274e957795cd756926086c3a $RNAppsFlyerStrictMode=false # @generated end AppsFlyer Strict Mode use_expo_modules! config = use_native_modules! use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] # Flags change depending on the env values. flags = get_default_flags() use_react_native!( :path => config[:reactNativePath], :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes', :fabric_enabled => flags[:fabric_enabled], # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/..", # Note that if you have use_frameworks! enabled, Flipper will not work if enabled :flipper_configuration => flipper_config ) # --- CustomerIO Host App START --- pod 'customerio-reactnative/apn', :path => '../../node_modules/customerio-reactnative' # --- CustomerIO Host App END --- post_install do |installer| react_native_post_install( installer, config[:reactNativePath], :mac_catalyst_enabled => false ) __apply_Xcode_12_5_M1_post_install_workaround(installer) # This is necessary for Xcode 14, because it signs resource bundles by default # when building for devices. installer.target_installation_results.pod_target_installation_results .each do |pod_name, target_installation_result| target_installation_result.resource_bundle_targets.each do |resource_bundle_target| resource_bundle_target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end end end post_integrate do |installer| begin expo_patch_react_imports!(installer) rescue => e Pod::UI.warn e end end end ```
podfile lock ``` PODS: - AppsFlyerFramework (6.12.0): - AppsFlyerFramework/Main (= 6.12.0) - AppsFlyerFramework/Main (6.12.0) - ASN1Decoder (1.9.0) - boost (1.76.0) - customerio-reactnative (3.3.1): - customerio-reactnative/nopush (= 3.3.1) - CustomerIO/MessagingInApp (= 2.9.2) - CustomerIO/Tracking (= 2.9.2) - React-Core - customerio-reactnative/apn (3.3.1): - CustomerIO/MessagingInApp (= 2.9.2) - CustomerIO/MessagingPushAPN (= 2.9.2) - CustomerIO/Tracking (= 2.9.2) - React-Core - customerio-reactnative/nopush (3.3.1): - CustomerIO/MessagingInApp (= 2.9.2) - CustomerIO/MessagingPush (= 2.9.2) - CustomerIO/Tracking (= 2.9.2) - React-Core - CustomerIO/MessagingInApp (2.9.2): - CustomerIOMessagingInApp (= 2.9.2) - CustomerIO/MessagingPush (2.9.2): - CustomerIOMessagingPush (= 2.9.2) - CustomerIO/MessagingPushAPN (2.9.2): - CustomerIOMessagingPushAPN (= 2.9.2) - CustomerIO/Tracking (2.9.2): - CustomerIOTracking (= 2.9.2) - CustomerIOCommon (2.9.2) - CustomerIOMessagingInApp (2.9.2): - CustomerIOTracking (= 2.9.2) - CustomerIOMessagingPush (2.9.2): - CustomerIOTracking (= 2.9.2) - CustomerIOMessagingPushAPN (2.9.2): - CustomerIOMessagingPush (= 2.9.2) - CustomerIOTracking (2.9.2): - CustomerIOCommon (= 2.9.2) - DoubleConversion (1.1.6) - EASClient (0.6.0): - ExpoModulesCore - EXApplication (5.3.0): - ExpoModulesCore - EXConstants (14.4.2): - ExpoModulesCore - EXFileSystem (15.4.3): - ExpoModulesCore - EXFont (11.4.0): - ExpoModulesCore - EXJSONUtils (0.7.1) - EXLocation (16.1.0): - ExpoModulesCore - EXManifests (0.7.1): - ExpoModulesCore - Expo (49.0.7): - ExpoModulesCore - expo-dev-client (2.4.11): - EXManifests - expo-dev-launcher - expo-dev-menu - expo-dev-menu-interface - EXUpdatesInterface - expo-dev-launcher (2.4.13): - EXManifests - expo-dev-launcher/Main (= 2.4.13) - expo-dev-menu - expo-dev-menu-interface - ExpoModulesCore - EXUpdatesInterface - RCT-Folly (= 2021.07.22.00) - React-Core - React-RCTAppDelegate - expo-dev-launcher/Main (2.4.13): - EXManifests - expo-dev-launcher/Unsafe - expo-dev-menu - expo-dev-menu-interface - ExpoModulesCore - EXUpdatesInterface - RCT-Folly (= 2021.07.22.00) - React-Core - React-RCTAppDelegate - expo-dev-launcher/Unsafe (2.4.13): - EXManifests - expo-dev-menu - expo-dev-menu-interface - ExpoModulesCore - EXUpdatesInterface - RCT-Folly (= 2021.07.22.00) - React-Core - React-RCTAppDelegate - expo-dev-menu (3.2.1): - expo-dev-menu/Main (= 3.2.1) - RCT-Folly (= 2021.07.22.00) - React-Core - expo-dev-menu-interface (1.3.0) - expo-dev-menu/Main (3.2.1): - EXManifests - expo-dev-menu-interface - expo-dev-menu/Vendored - ExpoModulesCore - RCT-Folly (= 2021.07.22.00) - React-Core - expo-dev-menu/SafeAreaView (3.2.1): - ExpoModulesCore - RCT-Folly (= 2021.07.22.00) - React-Core - expo-dev-menu/Vendored (3.2.1): - expo-dev-menu/SafeAreaView - RCT-Folly (= 2021.07.22.00) - React-Core - ExpoCrypto (12.4.1): - ExpoModulesCore - ExpoHead (0.0.16): - ExpoModulesCore - ExpoImage (1.3.4): - ExpoModulesCore - SDWebImage (~> 5.15.8) - SDWebImageAVIFCoder (~> 0.10.0) - SDWebImageSVGCoder (~> 1.7.0) - SDWebImageWebPCoder (~> 0.11.0) - ExpoKeepAwake (12.3.0): - ExpoModulesCore - ExpoLinearGradient (12.3.0): - ExpoModulesCore - ExpoLocalAuthentication (13.4.1): - ExpoModulesCore - ExpoLocalization (14.3.0): - ExpoModulesCore - ExpoModulesCore (1.5.9): - RCT-Folly (= 2021.07.22.00) - React-Core - React-NativeModulesApple - React-RCTAppDelegate - ReactCommon/turbomodule/core - ExpoSecureStore (12.3.1): - ExpoModulesCore - ExpoStoreReview (6.4.0): - ExpoModulesCore - ExpoSystemUI (2.4.0): - ExpoModulesCore - ExpoWebBrowser (12.3.2): - ExpoModulesCore - EXSplashScreen (0.20.5): - ExpoModulesCore - RCT-Folly (= 2021.07.22.00) - React-Core - EXStructuredHeaders (3.3.0) - EXUpdates (0.18.17): - ASN1Decoder (~> 1.8) - EASClient - EXManifests - ExpoModulesCore - EXStructuredHeaders - EXUpdatesInterface - RCT-Folly (= 2021.07.22.00) - ReachabilitySwift - React-Core - EXUpdatesInterface (0.10.1) - FBLazyVector (0.72.6) - FBReactNativeSpec (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTRequired (= 0.72.6) - RCTTypeSafety (= 0.72.6) - React-Core (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - fmt (6.2.1) - glog (0.3.5) - hermes-engine (0.72.6): - hermes-engine/Pre-built (= 0.72.6) - hermes-engine/Pre-built (0.72.6) - Instabug (12.1.0) - libaom (3.0.0): - libvmaf (>= 2.2.0) - libavif (0.11.1): - libavif/libaom (= 0.11.1) - libavif/core (0.11.1) - libavif/libaom (0.11.1): - libaom (>= 2.0.0) - libavif/core - libevent (2.1.12) - libvmaf (2.3.1) - libwebp (1.3.2): - libwebp/demux (= 1.3.2) - libwebp/mux (= 1.3.2) - libwebp/sharpyuv (= 1.3.2) - libwebp/webp (= 1.3.2) - libwebp/demux (1.3.2): - libwebp/webp - libwebp/mux (1.3.2): - libwebp/demux - libwebp/sharpyuv (1.3.2) - libwebp/webp (1.3.2): - libwebp/sharpyuv - LogRocket (1.18.1) - logrocket-react-native (1.18.1): - LogRocket (= 1.18.1) - React - MMKV (1.3.1): - MMKVCore (~> 1.3.1) - MMKVCore (1.3.1) - Plaid (4.4.0) - RCT-Folly (2021.07.22.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly/Default (= 2021.07.22.00) - RCT-Folly/Default (2021.07.22.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly/Futures (2021.07.22.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - libevent - RCTRequired (0.72.6) - RCTTypeSafety (0.72.6): - FBLazyVector (= 0.72.6) - RCTRequired (= 0.72.6) - React-Core (= 0.72.6) - ReachabilitySwift (5.0.0) - React (0.72.6): - React-Core (= 0.72.6) - React-Core/DevSupport (= 0.72.6) - React-Core/RCTWebSocket (= 0.72.6) - React-RCTActionSheet (= 0.72.6) - React-RCTAnimation (= 0.72.6) - React-RCTBlob (= 0.72.6) - React-RCTImage (= 0.72.6) - React-RCTLinking (= 0.72.6) - React-RCTNetwork (= 0.72.6) - React-RCTSettings (= 0.72.6) - React-RCTText (= 0.72.6) - React-RCTVibration (= 0.72.6) - React-callinvoker (0.72.6) - React-Codegen (0.72.6): - DoubleConversion - FBReactNativeSpec - glog - hermes-engine - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - React-jsi - React-jsiexecutor - React-NativeModulesApple - React-rncore - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - React-Core (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default (= 0.72.6) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/CoreModulesHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/Default (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/DevSupport (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default (= 0.72.6) - React-Core/RCTWebSocket (= 0.72.6) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector (= 0.72.6) - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTActionSheetHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTAnimationHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTBlobHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTImageHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTLinkingHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTNetworkHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTSettingsHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTTextHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTVibrationHeaders (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-Core/RCTWebSocket (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Core/Default (= 0.72.6) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-perflogger - React-runtimeexecutor - React-utils - SocketRocket (= 0.6.1) - Yoga - React-CoreModules (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTTypeSafety (= 0.72.6) - React-Codegen (= 0.72.6) - React-Core/CoreModulesHeaders (= 0.72.6) - React-jsi (= 0.72.6) - React-RCTBlob - React-RCTImage (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - SocketRocket (= 0.6.1) - React-cxxreact (0.72.6): - boost (= 1.76.0) - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-callinvoker (= 0.72.6) - React-debug (= 0.72.6) - React-jsi (= 0.72.6) - React-jsinspector (= 0.72.6) - React-logger (= 0.72.6) - React-perflogger (= 0.72.6) - React-runtimeexecutor (= 0.72.6) - React-debug (0.72.6) - React-hermes (0.72.6): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - RCT-Folly/Futures (= 2021.07.22.00) - React-cxxreact (= 0.72.6) - React-jsi - React-jsiexecutor (= 0.72.6) - React-jsinspector (= 0.72.6) - React-perflogger (= 0.72.6) - React-jsi (0.72.6): - boost (= 1.76.0) - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-jsiexecutor (0.72.6): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-cxxreact (= 0.72.6) - React-jsi (= 0.72.6) - React-perflogger (= 0.72.6) - React-jsinspector (0.72.6) - React-logger (0.72.6): - glog - react-native-appsflyer (6.12.1): - AppsFlyerFramework (= 6.12.0) - React - react-native-blob-util (0.18.6): - React-Core - react-native-device-risk (2.0.7): - React-Core - SocureDeviceRisk (~> 2.0.3) - react-native-get-random-values (1.9.0): - React-Core - react-native-mmkv (2.10.1): - MMKV (>= 1.2.13) - React-Core - react-native-netinfo (9.3.10): - React-Core - react-native-pdf (6.7.1): - React-Core - react-native-plaid-link-sdk (10.4.0): - Plaid (~> 4.4.0) - React-Core - react-native-restart (0.0.27): - React-Core - react-native-safe-area-context (4.6.3): - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - ReactCommon/turbomodule/core - react-native-webview (13.2.2): - React-Core - React-NativeModulesApple (0.72.6): - hermes-engine - React-callinvoker - React-Core - React-cxxreact - React-jsi - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - React-perflogger (0.72.6) - React-RCTActionSheet (0.72.6): - React-Core/RCTActionSheetHeaders (= 0.72.6) - React-RCTAnimation (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTTypeSafety (= 0.72.6) - React-Codegen (= 0.72.6) - React-Core/RCTAnimationHeaders (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTAppDelegate (0.72.6): - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - React-CoreModules - React-hermes - React-NativeModulesApple - React-RCTImage - React-RCTNetwork - React-runtimescheduler - ReactCommon/turbomodule/core - React-RCTBlob (0.72.6): - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-Codegen (= 0.72.6) - React-Core/RCTBlobHeaders (= 0.72.6) - React-Core/RCTWebSocket (= 0.72.6) - React-jsi (= 0.72.6) - React-RCTNetwork (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTImage (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTTypeSafety (= 0.72.6) - React-Codegen (= 0.72.6) - React-Core/RCTImageHeaders (= 0.72.6) - React-jsi (= 0.72.6) - React-RCTNetwork (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTLinking (0.72.6): - React-Codegen (= 0.72.6) - React-Core/RCTLinkingHeaders (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTNetwork (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTTypeSafety (= 0.72.6) - React-Codegen (= 0.72.6) - React-Core/RCTNetworkHeaders (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTSettings (0.72.6): - RCT-Folly (= 2021.07.22.00) - RCTTypeSafety (= 0.72.6) - React-Codegen (= 0.72.6) - React-Core/RCTSettingsHeaders (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-RCTText (0.72.6): - React-Core/RCTTextHeaders (= 0.72.6) - React-RCTVibration (0.72.6): - RCT-Folly (= 2021.07.22.00) - React-Codegen (= 0.72.6) - React-Core/RCTVibrationHeaders (= 0.72.6) - React-jsi (= 0.72.6) - ReactCommon/turbomodule/core (= 0.72.6) - React-rncore (0.72.6) - React-runtimeexecutor (0.72.6): - React-jsi (= 0.72.6) - React-runtimescheduler (0.72.6): - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-callinvoker - React-debug - React-jsi - React-runtimeexecutor - React-utils (0.72.6): - glog - RCT-Folly (= 2021.07.22.00) - React-debug - ReactCommon/turbomodule/bridging (0.72.6): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-callinvoker (= 0.72.6) - React-cxxreact (= 0.72.6) - React-jsi (= 0.72.6) - React-logger (= 0.72.6) - React-perflogger (= 0.72.6) - ReactCommon/turbomodule/core (0.72.6): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.07.22.00) - React-callinvoker (= 0.72.6) - React-cxxreact (= 0.72.6) - React-jsi (= 0.72.6) - React-logger (= 0.72.6) - React-perflogger (= 0.72.6) - RNCPicker (2.4.10): - React-Core - RNDateTimePicker (7.2.0): - React-Core - RNDeviceInfo (10.8.0): - React-Core - RNGestureHandler (2.12.0): - React-Core - RNInstabug (12.1.0): - Instabug (= 12.1.0) - React-Core - RNReanimated (3.3.0): - DoubleConversion - FBLazyVector - glog - hermes-engine - RCT-Folly - RCTRequired - RCTTypeSafety - React-callinvoker - React-Core - React-Core/DevSupport - React-Core/RCTWebSocket - React-CoreModules - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector - React-RCTActionSheet - React-RCTAnimation - React-RCTAppDelegate - React-RCTBlob - React-RCTImage - React-RCTLinking - React-RCTNetwork - React-RCTSettings - React-RCTText - ReactCommon/turbomodule/core - Yoga - RNScreens (3.22.1): - React-Core - React-RCTImage - RNSVG (13.9.0): - React-Core - SDWebImage (5.15.8): - SDWebImage/Core (= 5.15.8) - SDWebImage/Core (5.15.8) - SDWebImageAVIFCoder (0.10.1): - libavif (>= 0.11.0) - SDWebImage (~> 5.10) - SDWebImageSVGCoder (1.7.0): - SDWebImage/Core (~> 5.6) - SDWebImageWebPCoder (0.11.0): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.15) - segment-analytics-react-native (2.15.0): - React-Core - sovran-react-native - SocketRocket (0.6.1) - socure-docv-react-native (3.2.0): - React - SocureDocV (= 3.2.0) - SocureDeviceRisk (2.0.3): - TrustKit - SocureDocV (3.2.0) - sovran-react-native (1.0.4): - React-Core - TrustKit (3.0.3) - Yoga (1.14.0) DEPENDENCIES: - boost (from `../../node_modules/react-native/third-party-podspecs/boost.podspec`) - customerio-reactnative (from `../../node_modules/customerio-reactnative`) - customerio-reactnative/apn (from `../../node_modules/customerio-reactnative`) - DoubleConversion (from `../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - EASClient (from `../../node_modules/expo-eas-client/ios`) - EXApplication (from `../../node_modules/expo-application/ios`) - EXConstants (from `../../node_modules/expo-constants/ios`) - EXFileSystem (from `../../node_modules/expo-file-system/ios`) - EXFont (from `../../node_modules/expo-font/ios`) - EXJSONUtils (from `../../node_modules/expo-json-utils/ios`) - EXLocation (from `../../node_modules/expo-location/ios`) - EXManifests (from `../../node_modules/expo-manifests/ios`) - Expo (from `../../node_modules/expo`) - expo-dev-client (from `../../node_modules/expo-dev-client/ios`) - expo-dev-launcher (from `../../node_modules/expo-dev-launcher`) - expo-dev-menu (from `../../node_modules/expo-dev-menu`) - expo-dev-menu-interface (from `../../node_modules/expo-dev-menu-interface/ios`) - ExpoCrypto (from `../../node_modules/expo-crypto/ios`) - ExpoHead (from `../../node_modules/expo-head/ios`) - ExpoImage (from `../../node_modules/expo-image/ios`) - ExpoKeepAwake (from `../../node_modules/expo-keep-awake/ios`) - ExpoLinearGradient (from `../../node_modules/expo-linear-gradient/ios`) - ExpoLocalAuthentication (from `../../node_modules/expo-local-authentication/ios`) - ExpoLocalization (from `../../node_modules/expo-localization/ios`) - ExpoModulesCore (from `../../node_modules/expo-modules-core`) - ExpoSecureStore (from `../../node_modules/expo-secure-store/ios`) - ExpoStoreReview (from `../../node_modules/expo-store-review/ios`) - ExpoSystemUI (from `../../node_modules/expo-system-ui/ios`) - ExpoWebBrowser (from `../../node_modules/expo-web-browser/ios`) - EXSplashScreen (from `../../node_modules/expo-splash-screen/ios`) - EXStructuredHeaders (from `../../node_modules/expo-structured-headers/ios`) - EXUpdates (from `../../node_modules/expo-updates/ios`) - EXUpdatesInterface (from `../../node_modules/expo-updates-interface/ios`) - FBLazyVector (from `../../node_modules/react-native/Libraries/FBLazyVector`) - FBReactNativeSpec (from `../../node_modules/react-native/React/FBReactNativeSpec`) - glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - libevent (~> 2.1.12) - "logrocket-react-native (from `../../node_modules/@logrocket/react-native`)" - RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTRequired (from `../../node_modules/react-native/Libraries/RCTRequired`) - RCTTypeSafety (from `../../node_modules/react-native/Libraries/TypeSafety`) - React (from `../../node_modules/react-native/`) - React-callinvoker (from `../../node_modules/react-native/ReactCommon/callinvoker`) - React-Codegen (from `build/generated/ios`) - React-Core (from `../../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../../node_modules/react-native/`) - React-CoreModules (from `../../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../../node_modules/react-native/ReactCommon/react/debug`) - React-hermes (from `../../node_modules/react-native/ReactCommon/hermes`) - React-jsi (from `../../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector`) - React-logger (from `../../node_modules/react-native/ReactCommon/logger`) - react-native-appsflyer (from `../../node_modules/react-native-appsflyer`) - react-native-blob-util (from `../../node_modules/react-native-blob-util`) - react-native-device-risk (from `../../node_modules/react-native-device-risk`) - react-native-get-random-values (from `../../node_modules/react-native-get-random-values`) - react-native-mmkv (from `../../node_modules/react-native-mmkv`) - "react-native-netinfo (from `../../node_modules/@react-native-community/netinfo`)" - react-native-pdf (from `../../node_modules/react-native-pdf`) - react-native-plaid-link-sdk (from `../../node_modules/react-native-plaid-link-sdk`) - react-native-restart (from `../../node_modules/react-native-restart`) - react-native-safe-area-context (from `../../node_modules/react-native-safe-area-context`) - react-native-webview (from `../../node_modules/react-native-webview`) - React-NativeModulesApple (from `../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../../node_modules/react-native/ReactCommon/reactperflogger`) - React-RCTActionSheet (from `../../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../../node_modules/react-native/Libraries/NativeAnimation`) - React-RCTAppDelegate (from `../../node_modules/react-native/Libraries/AppDelegate`) - React-RCTBlob (from `../../node_modules/react-native/Libraries/Blob`) - React-RCTImage (from `../../node_modules/react-native/Libraries/Image`) - React-RCTLinking (from `../../node_modules/react-native/Libraries/LinkingIOS`) - React-RCTNetwork (from `../../node_modules/react-native/Libraries/Network`) - React-RCTSettings (from `../../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../../node_modules/react-native/Libraries/Vibration`) - React-rncore (from `../../node_modules/react-native/ReactCommon`) - React-runtimeexecutor (from `../../node_modules/react-native/ReactCommon/runtimeexecutor`) - React-runtimescheduler (from `../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../../node_modules/react-native/ReactCommon/react/utils`) - ReactCommon/turbomodule/core (from `../../node_modules/react-native/ReactCommon`) - "RNCPicker (from `../../node_modules/@react-native-picker/picker`)" - "RNDateTimePicker (from `../../node_modules/@react-native-community/datetimepicker`)" - RNDeviceInfo (from `../../node_modules/react-native-device-info`) - RNGestureHandler (from `../../node_modules/react-native-gesture-handler`) - RNInstabug (from `../../node_modules/instabug-reactnative`) - RNReanimated (from `../../node_modules/react-native-reanimated`) - RNScreens (from `../../node_modules/react-native-screens`) - RNSVG (from `../../node_modules/react-native-svg`) - "segment-analytics-react-native (from `../../node_modules/@segment/analytics-react-native`)" - "socure-docv-react-native (from `../../node_modules/@socure-inc/docv-react-native`)" - "sovran-react-native (from `../../node_modules/@segment/sovran-react-native`)" - Yoga (from `../../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: trunk: - AppsFlyerFramework - ASN1Decoder - CustomerIO - CustomerIOCommon - CustomerIOMessagingInApp - CustomerIOMessagingPush - CustomerIOMessagingPushAPN - CustomerIOTracking - fmt - Instabug - libaom - libavif - libevent - libvmaf - libwebp - LogRocket - MMKV - MMKVCore - Plaid - ReachabilitySwift - SDWebImage - SDWebImageAVIFCoder - SDWebImageSVGCoder - SDWebImageWebPCoder - SocketRocket - SocureDeviceRisk - SocureDocV - TrustKit EXTERNAL SOURCES: boost: :podspec: "../../node_modules/react-native/third-party-podspecs/boost.podspec" customerio-reactnative: :path: "../../node_modules/customerio-reactnative" DoubleConversion: :podspec: "../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" EASClient: :path: "../../node_modules/expo-eas-client/ios" EXApplication: :path: "../../node_modules/expo-application/ios" EXConstants: :path: "../../node_modules/expo-constants/ios" EXFileSystem: :path: "../../node_modules/expo-file-system/ios" EXFont: :path: "../../node_modules/expo-font/ios" EXJSONUtils: :path: "../../node_modules/expo-json-utils/ios" EXLocation: :path: "../../node_modules/expo-location/ios" EXManifests: :path: "../../node_modules/expo-manifests/ios" Expo: :path: "../../node_modules/expo" expo-dev-client: :path: "../../node_modules/expo-dev-client/ios" expo-dev-launcher: :path: "../../node_modules/expo-dev-launcher" expo-dev-menu: :path: "../../node_modules/expo-dev-menu" expo-dev-menu-interface: :path: "../../node_modules/expo-dev-menu-interface/ios" ExpoCrypto: :path: "../../node_modules/expo-crypto/ios" ExpoHead: :path: "../../node_modules/expo-head/ios" ExpoImage: :path: "../../node_modules/expo-image/ios" ExpoKeepAwake: :path: "../../node_modules/expo-keep-awake/ios" ExpoLinearGradient: :path: "../../node_modules/expo-linear-gradient/ios" ExpoLocalAuthentication: :path: "../../node_modules/expo-local-authentication/ios" ExpoLocalization: :path: "../../node_modules/expo-localization/ios" ExpoModulesCore: :path: "../../node_modules/expo-modules-core" ExpoSecureStore: :path: "../../node_modules/expo-secure-store/ios" ExpoStoreReview: :path: "../../node_modules/expo-store-review/ios" ExpoSystemUI: :path: "../../node_modules/expo-system-ui/ios" ExpoWebBrowser: :path: "../../node_modules/expo-web-browser/ios" EXSplashScreen: :path: "../../node_modules/expo-splash-screen/ios" EXStructuredHeaders: :path: "../../node_modules/expo-structured-headers/ios" EXUpdates: :path: "../../node_modules/expo-updates/ios" EXUpdatesInterface: :path: "../../node_modules/expo-updates-interface/ios" FBLazyVector: :path: "../../node_modules/react-native/Libraries/FBLazyVector" FBReactNativeSpec: :path: "../../node_modules/react-native/React/FBReactNativeSpec" glog: :podspec: "../../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" :tag: hermes-2023-08-07-RNv0.72.4-813b2def12bc9df02654b3e3653ae4a68d0572e0 logrocket-react-native: :path: "../../node_modules/@logrocket/react-native" RCT-Folly: :podspec: "../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTRequired: :path: "../../node_modules/react-native/Libraries/RCTRequired" RCTTypeSafety: :path: "../../node_modules/react-native/Libraries/TypeSafety" React: :path: "../../node_modules/react-native/" React-callinvoker: :path: "../../node_modules/react-native/ReactCommon/callinvoker" React-Codegen: :path: build/generated/ios React-Core: :path: "../../node_modules/react-native/" React-CoreModules: :path: "../../node_modules/react-native/React/CoreModules" React-cxxreact: :path: "../../node_modules/react-native/ReactCommon/cxxreact" React-debug: :path: "../../node_modules/react-native/ReactCommon/react/debug" React-hermes: :path: "../../node_modules/react-native/ReactCommon/hermes" React-jsi: :path: "../../node_modules/react-native/ReactCommon/jsi" React-jsiexecutor: :path: "../../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: :path: "../../node_modules/react-native/ReactCommon/jsinspector" React-logger: :path: "../../node_modules/react-native/ReactCommon/logger" react-native-appsflyer: :path: "../../node_modules/react-native-appsflyer" react-native-blob-util: :path: "../../node_modules/react-native-blob-util" react-native-device-risk: :path: "../../node_modules/react-native-device-risk" react-native-get-random-values: :path: "../../node_modules/react-native-get-random-values" react-native-mmkv: :path: "../../node_modules/react-native-mmkv" react-native-netinfo: :path: "../../node_modules/@react-native-community/netinfo" react-native-pdf: :path: "../../node_modules/react-native-pdf" react-native-plaid-link-sdk: :path: "../../node_modules/react-native-plaid-link-sdk" react-native-restart: :path: "../../node_modules/react-native-restart" react-native-safe-area-context: :path: "../../node_modules/react-native-safe-area-context" react-native-webview: :path: "../../node_modules/react-native-webview" React-NativeModulesApple: :path: "../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: :path: "../../node_modules/react-native/ReactCommon/reactperflogger" React-RCTActionSheet: :path: "../../node_modules/react-native/Libraries/ActionSheetIOS" React-RCTAnimation: :path: "../../node_modules/react-native/Libraries/NativeAnimation" React-RCTAppDelegate: :path: "../../node_modules/react-native/Libraries/AppDelegate" React-RCTBlob: :path: "../../node_modules/react-native/Libraries/Blob" React-RCTImage: :path: "../../node_modules/react-native/Libraries/Image" React-RCTLinking: :path: "../../node_modules/react-native/Libraries/LinkingIOS" React-RCTNetwork: :path: "../../node_modules/react-native/Libraries/Network" React-RCTSettings: :path: "../../node_modules/react-native/Libraries/Settings" React-RCTText: :path: "../../node_modules/react-native/Libraries/Text" React-RCTVibration: :path: "../../node_modules/react-native/Libraries/Vibration" React-rncore: :path: "../../node_modules/react-native/ReactCommon" React-runtimeexecutor: :path: "../../node_modules/react-native/ReactCommon/runtimeexecutor" React-runtimescheduler: :path: "../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" React-utils: :path: "../../node_modules/react-native/ReactCommon/react/utils" ReactCommon: :path: "../../node_modules/react-native/ReactCommon" RNCPicker: :path: "../../node_modules/@react-native-picker/picker" RNDateTimePicker: :path: "../../node_modules/@react-native-community/datetimepicker" RNDeviceInfo: :path: "../../node_modules/react-native-device-info" RNGestureHandler: :path: "../../node_modules/react-native-gesture-handler" RNInstabug: :path: "../../node_modules/instabug-reactnative" RNReanimated: :path: "../../node_modules/react-native-reanimated" RNScreens: :path: "../../node_modules/react-native-screens" RNSVG: :path: "../../node_modules/react-native-svg" segment-analytics-react-native: :path: "../../node_modules/@segment/analytics-react-native" socure-docv-react-native: :path: "../../node_modules/@socure-inc/docv-react-native" sovran-react-native: :path: "../../node_modules/@segment/sovran-react-native" Yoga: :path: "../../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: AppsFlyerFramework: 38431c0dd52c05f4bdbe34934ef004d586063b30 ASN1Decoder: 4f4bbcaf1d1b8be56daa3280e82863a607f5bda9 boost: 57d2868c099736d80fcd648bf211b4431e51a558 CustomerIO: fa652a140176039948669866b257098003324a56 customerio-reactnative: c52356de136d4afd75c9ee5dd4bf18e73b6ffd08 CustomerIOCommon: f169b2afa45dbba440c804edb6877e77ae1ade78 CustomerIOMessagingInApp: 84901d1385b548ca06b9ab59c6d0cfc1cc027f6e CustomerIOMessagingPush: d8b0cb865db5911a3f27a6990500e4817fc19c1b CustomerIOMessagingPushAPN: 12a9d33f345b08eb501e459d289985e5c7af76e8 CustomerIOTracking: 4e7b6af50347036aa1670e11d8c79f4973d44f22 DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 EASClient: 49f8ea858204eb4844d9fb386e5fb7920aee2e30 EXApplication: 02655a251434d564bb0e73291f5a490c74b5b76f EXConstants: ce5bbea779da8031ac818c36bea41b10e14d04e1 EXFileSystem: 941b273758aee14be2ecc671dacb4f10dd28c833 EXFont: 738c44c390953ebcbab075a4848bfbef025fd9ee EXJSONUtils: 6802be4282d42b97c51682468ddc1026a06f8276 EXLocation: a425ace19c0445e7ea9702982fc6b9a402791510 EXManifests: 8a4a480e3b58891d5657d3996a39229e5c96d912 Expo: d310f3b84bd30843324d41f23ea7cc5e4273abf1 expo-dev-client: a97a68508a6104ad99f4b2613fd808cda7a4186c expo-dev-launcher: 0b4a7ae150c57ac3d4e6e9a434145443cf6637d4 expo-dev-menu: 69bfd444d546c407a1a7074adefddf606a1afa7a expo-dev-menu-interface: bda969497e73dadc2663c479e0fa726ca79a306e ExpoCrypto: a382ab9a2fa91f0b511ce1fe4d6baecee40a1615 ExpoHead: 1de3e6e6e5d63560875c7f4f128c58053be5d960 ExpoImage: 912063c1082ed72f8ae6bbbe0196602257022fa9 ExpoKeepAwake: be4cbd52d9b177cde0fd66daa1913afa3161fc1d ExpoLinearGradient: 5966dd5d49872cc9c104fedc8bbc298b6049b2e8 ExpoLocalAuthentication: bd9d9037a96a11ccc456e327ddb404df02da10ca ExpoLocalization: be37fdd0b5930c6a49cd307b4542f4b426d6134c ExpoModulesCore: 0a114333f029eaa2edc701334515b4e05343fac3 ExpoSecureStore: 57db3b6da8b59046e2057e95bf7738a8027b47c3 ExpoStoreReview: f154c9fdf3dbd877ca0115757f0b2b6f43dd9db4 ExpoSystemUI: fa4854e3226e87f86d3383570264c6e4e90bc782 ExpoWebBrowser: 2c788f9c07718a780fe6d8bf2f6195c47609faaa EXSplashScreen: 2c80621e4bc952f5bea328304c2436f5fe21c2a0 EXStructuredHeaders: 324cc3130571d2696357fafd8be7fd9a0b5fdf6e EXUpdates: 8f03b362414e8f9f0998f8a6d6c9fc00f2a9d2f2 EXUpdatesInterface: 82ed48d417cdcd376c12ca1c2ce390d35500bed6 FBLazyVector: 748c0ef74f2bf4b36cfcccf37916806940a64c32 FBReactNativeSpec: e9be3c8e89388a43d821643f1943ca429f853415 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b hermes-engine: 8057e75cfc1437b178ac86c8654b24e7fead7f60 Instabug: 3ce9b076023458324e8c5f2452a32bc0609f676d libaom: 144606b1da4b5915a1054383c3a4459ccdb3c661 libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 libvmaf: 27f523f1e63c694d14d534cd0fddd2fab0ae8711 libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009 LogRocket: 82d2b8e6eb0458b1664b613d8f2415985f90aca7 logrocket-react-native: fbbf171c2a1cd73dc773de0c38f152b127680893 MMKV: 5a07930c70c70b86cd87761a42c8f3836fb681d7 MMKVCore: e50135dbd33235b6ab390635991bab437ab873c0 Plaid: 29a5506900d372d6d3d77199090b9a7a3af475bd RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74 RCTTypeSafety: e9c6c409fca2cc584e5b086862d562540cb38d29 ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825 React: 769f469909b18edfe934f0539fffb319c4c61043 React-callinvoker: e48ce12c83706401251921896576710d81e54763 React-Codegen: 8cb364505beec45713ac224bcbb6bb41c3fc1a85 React-Core: 56221b0ea21a0934aa1fbc4aef924e9007d60f26 React-CoreModules: 9748a6fe4404323a3280ad3c5311d28d6f4f813b React-cxxreact: 44a3560510ead6633b6e02f9fbbdd1772fb40f92 React-debug: 0a068b2ff5e6d2575d64303b37b554573d758e76 React-hermes: 46e66dc854124d7645c20bfec0a6be9542826ecd React-jsi: fbdaf4166bae60524b591b18c851b530c8cdb90c React-jsiexecutor: 3bf18ff7cb03cd8dfdce08fbbc0d15058c1d71ae React-jsinspector: 194e32c6aab382d88713ad3dd0025c5f5c4ee072 React-logger: cebf22b6cf43434e471dc561e5911b40ac01d289 react-native-appsflyer: a1b344b21b628dd1c66a9eb28f12d2a94ac5ab2f react-native-blob-util: c5430d091e011b7fc57f888c356da2a2ff8dc8ad react-native-device-risk: 56f0befa4101082930a0810ae3494d96ec20d785 react-native-get-random-values: dee677497c6a740b71e5612e8dbd83e7539ed5bb react-native-mmkv: dea675cf9697ad35940f1687e98e133e1358ef9f react-native-netinfo: ccbe1085dffd16592791d550189772e13bf479e2 react-native-pdf: 7c0e91ada997bac8bac3bb5bea5b6b81f5a3caae react-native-plaid-link-sdk: a9fdfbd280a913b324e13021e7e112352efaefd0 react-native-restart: 7595693413fe3ca15893702f2c8306c62a708162 react-native-safe-area-context: 36cc67648134e89465663b8172336a19eeda493d react-native-webview: b8ec89966713985111a14d6e4bf98d8b54bced0d React-NativeModulesApple: 1802a680a4cd891d2ab97780771bcb2ff11fdc0b React-perflogger: e3596db7e753f51766bceadc061936ef1472edc3 React-RCTActionSheet: 17ab132c748b4471012abbcdcf5befe860660485 React-RCTAnimation: 3fe720d2c172de51de8dc19ba091c559d22ebd9b React-RCTAppDelegate: c64ab148e0c8139be28c76d4f159acd87560359d React-RCTBlob: fd752f54ae335c93a36650be8129b352b852185f React-RCTImage: a99cc31f93f72fe17d0448fd45d7a812fd50388e React-RCTLinking: c56c6c36b85cebf1f4fa61a3493c9f01551afaab React-RCTNetwork: 01167794715ec8ae4854caca36d4009b5e257257 React-RCTSettings: 52790fef45f5a0655cad22ab9b9a87e675d84d8c React-RCTText: adde32164a243103aaba0b1dc7b0a2599733873e React-RCTVibration: 1c047e1d9b21992f91c21f221f360640a4a288ec React-rncore: 11949ecf816566463b2d6c2cf64d9f94d3141ee1 React-runtimeexecutor: 57d85d942862b08f6d15441a0badff2542fd233c React-runtimescheduler: 76eb364c37e6c20845cfe0cb049f883021bdfccf React-utils: 1dc03e6e55f56388b6fdde3768a66c885bacb627 ReactCommon: cfe086d2e2ec9f2907c66666c856082608fba822 RNCPicker: 0bc2f0a29abcca7b7ed44a2d036aac9ab6d25700 RNDateTimePicker: 3942382593f104af226ad9c56e16166960c7ae30 RNDeviceInfo: 5795b418ed3451ebcaf39384e6cf51f60cb931c9 RNGestureHandler: dec4645026e7401a0899f2846d864403478ff6a5 RNInstabug: 0f0ce0e30f6f930981843cebbbdfafe3fc310937 RNReanimated: f9fb828550a280ff692695ef08cf68ae6d5898d6 RNScreens: 50ffe2fa2342eabb2d0afbe19f7c1af286bc7fb3 RNSVG: 53c661b76829783cdaf9b7a57258f3d3b4c28315 SDWebImage: cb032eba469c54e0000e78bcb0a13cdde0a52798 SDWebImageAVIFCoder: 8348fef6d0ec69e129c66c9fe4d74fbfbf366112 SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c SDWebImageWebPCoder: 295a6573c512f54ad2dd58098e64e17dcf008499 segment-analytics-react-native: 2b90f606cda9234dd110d117c4ffc918d9ba29bb SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 socure-docv-react-native: 6b427b39b50b22dd44c25f30731be144d556623f SocureDeviceRisk: 8edf6bfec248d3249ccbdce1f8b21a117e61deaf SocureDocV: 57fc9365c7c6597824c83fa7691621cb6f429c2d sovran-react-native: 791f2f726b4d57ece59676eda58d6da9dc95ad4e TrustKit: 7858ea59d0e226b1457b2e9cc8b95d77ab21d471 Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603 PODFILE CHECKSUM: 5fe256eb41d4c1ef20af922bc43dbfb142a63d8b COCOAPODS: 1.12.1 ```
levibostian commented 9 months ago

Thank you for sharing that info.

So far, I cannot find anything that stands out to me. Have you tried deleting derived data on your machine? Can you try building on another computer to see if you encounter the same problems? Can you clean the build folders of your project and try building again?

The error message could be caused by cached xcode files causing issues for you.

dannyhw commented 9 months ago

Ok sounds like its probably a cache issue then, not really blocking me right now so I'm happy to close this.