Open alexobviously opened 1 month ago
@alexobviously Please try the following steps.
Disable Bitcode in the Podfile: Add the following line to ensure Bitcode is disabled for the entire project:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
Clean and rebuild the project:
flutter clean
flutter build ios --release
@alexobviously Please try the following steps.
Thanks for the reply, unfortunately I did already try disabling bitcode in pods in this way and it didn't change anything for me
@alexobviously I just updated the iOS native lib to v9.6.40, which has removed the bitcode.
Please rebuild your project with flutter_barcode_sdk v2.2.8.
Getting this error when trying to upload an ios release build:
Not really sure what's going on here, especially considering that the podfile for this package says bitcode is disabled, and I even have a post install step in my podfile that sets it to disabled for every pod.