I have many external libraries and SDKs in my project. And some of them does not support bitcode
. So I have to disable bitcode
. But some libraries like ParseCrashReporting, does require it to symbolicate the crash reports.
I want to disable and enable bitcode
for specific libraries. How I can achieve that? Is it even possible?
Thanks
You can't. The library itself has to be built with support of bitcode. However, in case you have to ship you app right now and you don't have time for waiting while they update their library - you can disable bitcode support for your whole project. Once you have updated library with bitcode support - just enable it back on and update your app in the AppStore.
To enable/disable bitcode support go to Project > Build Settings > search for 'bitcode' in the searchfield > set to YES/NO.