Changes between Version 75 and Version 76 of Getting-Started/Android


Ignore:
Timestamp:
May 31, 2019 9:39:29 AM (5 years ago)
Author:
ming
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Android

    v75 v76  
    139139== OpenSSL Support == 
    140140 
    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 {{{ 
     143cd openssl-1.0.2s 
     144 
     145export 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 
    148148export TOOLCHAIN_PATH=`pwd`/android-toolchain-arm64/bin 
    149149export TOOL=aarch64-linux-android