I'm working on build PJSIP project for Android ABIs(armeabi, x86_64, x86) using OpenSSL on Ubuntu. I tired to build OpenSSL Android ABIs(armeabi, x86_64, x86) by the given steps on PJSIP Documentation, Here and Github repo.
I have successfully build OpenSSL for Android ABIs and created static libraries (*.a). Now, with the created static libraries (libCrypto.a and libssl.a)
I've started to build PJSIP project for Android ABIs and set OpenSSL directory path in ./Configure Android
as mentioned in their document for corresponded ABI.
When I'm looking generated logs in terminal I found the message "OpenSSL library not found. OpenSSL disabled".
One thing I noticed that I'm working with (.a) library whereas I saw many suggestions are using (libcrypto.so and libssl.so)
, if this is the issue then, I'd like to know the steps to generate .so
library to build OpenSSL project.