/android-openssl-cmake

Easy way to use OpenSSL in your cmake Android app

Primary LanguageShellOtherNOASSERTION

OpenSSL For Android

  • Include build-openssl.sh in your app (Preferrably in the app's root folder)
  • Run it once
  • This will make a folder prefix which will have OpenSSL libraries

Using in cmake

Add these to your CMakeLists.txt app :

set(OPENSSL_ROOT_DIR path-to-prefix-folder)

If your CMake file is at app/src/main/cpp/CMakeLists.txt and the prefix folder is in app root then it will be :

set(OPENSSL_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../../../../prefix/${CMAKE_ANDROID_ARCH_ABI})

This is used in Dots app