mrousavy / react-native-blob-jsi-helper

A React Native library for accessing an ArrayBuffer of a Blob instance.
MIT License
129 stars 7 forks source link

incompatible with react native 0.75.x on ios #15

Open shamilovtim opened 4 weeks ago

shamilovtim commented 4 weeks ago

Upon trying to build an iOS app with react native 0.75.x receive errors:

/ios/Pods/Headers/Public/ReactCommon/react/bridging/Convert.h:25:54 Expected '(' for function-style cast or type construction
ios/Pods/Headers/Public/ReactCommon/react/bridging/Convert.h:23:10 No template named 'is_same_v' in namespace 'std'; did you mean 'is_same'?
mlecoq commented 2 weeks ago

Adding

  s.pod_target_xcconfig = {
    "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
  }

in react-native-blob-jsi-helper.podspec solved the issue for me