Android OpenSSL support Installation Instructions
Download
git clone https://github.com/KDAB/android_openssl.git
How to use with QMake
Add openssl.pri
into your qmake .pro
project file:
android: include(<path/to/android_openssl/openssl.pri)
How to use with CMake
Add the following into your CMake's CMakeLists.txt
file:
if (ANDROID)
include(<path/to/android_openssl/CMakeLists.txt)
endif()