SDK does not contain bitcode ios

In one of my projects, I integrate paytab ios sdk when an integration error occurs that

a (PayTabCardReaderViewController.o) 'does not contain a bit code. I tried to enable bitcode = No

but after turning on bitcode = no it shows me more than 40 erros, does anyone know if it is possible to disable bitcode for only 1 sdk / library?

Error: a (PayTabCardReaderViewController.o) 'does not contain a bitcode. You must rebuild it with the bit code turned on (Xcode parameter ENABLE_BITCODE), get the updated library from the provider, or disable the bit code for this purpose. for arm64 architecture clang: error: linker command did not work with exit code 1 (use -v to invoke the call)

+4
source share
1 answer

Solution . You must disable the bitcode option on the Build Settings tab at the workspace / project level. Do not forget CocoaPods if you use it. Manual: how is ENABLE_BITCODE in xcode 7?

What is a bitcode? A bitcode is an intermediate representation of a compiled program. Applications downloaded to iTunes Connect containing the bit code will be compiled and linked to the repository. Enabling bit code will allow Apple to re-optimize the binary application in the future without having to send a new version of your application to the store.

enter image description here

0
source

Source: https://habr.com/ru/post/1628811/


All Articles