Closed faraz3796 closed 1 month ago
same here, @faraz3796 have you found a temporary solution?
same here, @faraz3796 have you found a temporary solution?
Not yet
same here
This issue is caused by the removed compiler option in xcode 16.
I've submitted a pull request (#154) with a fix, but if you're in a hurry, adding the following code to [ios or macos]/Podfile
should fix the issue.
post_install do |installer|
...
installer.pods_project.targets.each do |target|
...
# Add these lines
if target.name == 'webcrypto'
target.source_build_phase.files.each do |file|
if file.settings && file.settings['COMPILER_FLAGS']
flags = file.settings['COMPILER_FLAGS'].split
flags.reject! { |flag| flag == '-GCC_WARN_INHIBIT_ALL_WARNINGS' }
file.settings['COMPILER_FLAGS'] = flags.join(' ')
end
end
end
# End adding lines
end
end
I just upgraded the iMac to MACOS sequoia. Now android is working fine but throwing issue on IOS build.