Closed sanjaypojo closed 5 years ago
Hello, @sanjaypojo !
You can't disable bitcode for your application dependencies selectively. So bitcode should be enabled for all components or disabled at all.
Voximplant iOS SDK (on which Voximplant React Native SDK for iOS is based on) is available on cocoapods without bitcode. It means if you install Voximplant React Native SDK according the steps provided in README file, you install Voximplant SDK with disabled bitcode.
If you need to use bitcode in your project, you can download the version of the Voximplant iOS SDK with bitcode and manually add it to the Podfile.
Open your application Podfile and add the following lines with correct paths to downloaded frameworks. Please note you should keep the line with 'react-native-voximplant' pod:
pod 'react-native-voximplant', path: '../node_modules/react-native-voximplant'
// Add these lines
pod 'VoxImplantSDK', path: '../Path/To/VoxImplant_bitcode/'
pod 'VoxImplantWebRTC', path: '../Path/To/VoxImplantWebRTC_bitcode/'
Best regards, Yulia Grigorieva
Thanks @YuliaGrigorieva, that makes sense!
Hi, is there an easy way to get the library to work with bitcode? If not, then is there a way to disable bitcode only for voximplant in my podfile?