Is there an OpenSSL cocoapod that works with bitcode enabled? Previously I was using the pod \'OpenSSL\'
, but I want to have bitcode in my app. Is there any way to
I didn't encounter any pod for openSSL with bitcode, but if you build it yourself, it is possible. As you mentioned yourself, you can use OpenSSL-for-iOS (https://github.com/x2on/OpenSSL-for-iPhone) and just run ./build-libssl.sh
Then you will see some libraries with the openSSL output. See how it has been linked and used in the OpenSSL-for-iOS example project, and try to do the same in your project.