I get the error: 'react/debug/react_native_assert.h' file not found, React-utils/RunLoopObserver. The problem seems to be a pre_install hook that i added:
dynamic_frameworks = [
'Starscream',
'iProov',
'DatadogSDK',
'SwiftProtobuf',
]
pre_install do |installer|
installer.pod_targets.each do |pod|
if !dynamic_frameworks.include?(pod.name)
puts "Overriding the static_framework? method for #{pod.name}"
def pod.static_framework?;
true
end
def pod.build_type;
Pod::BuildType.static_library
end
end
end
end
I cannot remove the pre_install hook as it is required to run one of my dependencies