Closed mpmX closed 8 years ago
You need to also disable bitcode on the Pod target. The easiest way to do that is to add this to your Podfile:
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
Thanks, I also found this solution. It works!
Hi, I have problems compiling my Swift project using Tesseract-OCR-iOS.
My environment: XCode 7.3.1 Swift 2.2 Target iOS version: 9.3 Tesseract-OCR-iOS version 4.0.0 from CocoaPods
I did the following:
It says that I shoudl disable bitcode, however, changing bitcode to no does not make any difference.
Can someone help please?