Closed andorsk closed 2 weeks ago
My workaround in the Podfile
got me through it.
installer.pods_project.targets.each do |target|
if target.name == 'RNZipArchive'
target.source_build_phase.files.each do |file|
if file.settings && file.settings['COMPILER_FLAGS']
file.settings['COMPILER_FLAGS'] = ''
end
end
end
end
@andorsk Thanks for looking into the issue.I think we can fix this by updating the react-native-zip-archive
package and increase the min_ios_supported_version
@andorsk We have merged new changes to main. Can you try it out once ?
I am closing this issue as this is fixed now
Describe the bug I was trying to build the app from scratch, and ran into the following issue on XCode 16 ios target:
/node_modules/react-native-zip-archive/ios/RNZipArchive.m unsupported option '-G' for target 'arm64-apple-ios14.0-simulator'
Which seems to be a bug related to https://github.com/mockingbot/react-native-zip-archive/issues/307. XCode 16.
To Reproduce Steps to reproduce the behavior:
Expected behavior After steps 1-2, 3 should build the project.
Logs
Desktop (please complete the following information):
Smartphone (please complete the following information): Targeting iPad Pro 13 in M4 ios 17.4
Additional context Add any other context about the problem here.