141 | | 1. Build OpenSSL (tested with OpenSSL 1.0.2a) for Android. The instruction provided here is specifically for arm64. For other architectures, modify accordingly. Please visit [http://stackoverflow.com/questions/11929773/compiling-the-latest-openssl-for-android this page] for reference and some examples. Note: change the NDK path below. |
142 | | {{{ |
143 | | cd openssl-1.0.2a |
144 | | |
145 | | export NDK=[your_android_ndk_path]/android-ndk-r10d |
146 | | |
147 | | $NDK/build/tools/make-standalone-toolchain.sh --platform=android-21 --toolchain=aarch64-linux-android-4.9 --install-dir=`pwd`/android-toolchain-arm64 |
| 141 | 1. Build OpenSSL (tested with OpenSSL 1.0.2s) for Android. The instruction provided here is specifically for arm64. For other architectures, modify accordingly. Please visit [http://stackoverflow.com/questions/11929773/compiling-the-latest-openssl-for-android this page] for reference and some examples. Note: you need to change the NDK path and the API platform level below. |
| 142 | {{{ |
| 143 | cd openssl-1.0.2s |
| 144 | |
| 145 | export NDK=[your_android_ndk_path]/android-ndk-r17b |
| 146 | |
| 147 | $NDK/build/tools/make-standalone-toolchain.sh --platform=android-28 --toolchain=aarch64-linux-android-4.9 --install-dir=`pwd`/android-toolchain-arm64 |