Skip to content

YiChaoLove/openssl-curl-android

 
 

Repository files navigation

openssl-curl-android

Compile openssl and curl for Android

Prerequisites

Make sure you have Android NDK installed.

You may also need to install autoconf and libtool toolchains as well as build essentials.

Download

If you do not want to compile them yourself, you can download pre-compiled static libraries from releases. They are in build.tar.gz.

Doing your own compilation is recommended, since the pre-compiled binary can become outdated soon.

Checkout newer versions in git submodules to compile newer versions of the libraries. For example, to build OpenSSL_1_1_1l and curl-7_78_0:

cd openssl
git fetch
git checkout OpenSSL_1_1_1l
cd ..

cd curl
git fetch
git checkout curl-7_78_0
cd ..

Usage

git clone https://github.com/robertying/openssl-curl-android.git
cd openssl-curl-android
git submodule update --init --recursive

export NDK=your_android_ndk_root_here # e.g. $HOME/Library/Android/sdk/ndk/23.0.7599858
export HOST_TAG=see_this_table_for_info # e.g. darwin-x86_64, see https://developer.android.com/ndk/guides/other_build_systems#overview
export MIN_SDK_VERSION=23 # or any version you want

chmod +x ./build.sh
./build.sh

All compiled libs are located in build/openssl and build/curl directory.

Use NDK to link those libs, part of Android.mk example:

include $(CLEAR_VARS)
LOCAL_MODULE := curl
LOCAL_SRC_FILES := build/curl/$(TARGET_ARCH_ABI)/libcurl.a
include $(PREBUILT_STATIC_LIBRARY)

Options

  • Change scripts' configure arguments to meet your own needs.

  • For now, using TLS (https) in Android would throw peer verification failed.

    Please explicitly set curl_easy_setopt(curl, CURLOPT_CAINFO, CA_BUNDLE_PATH); where CA_BUNDLE_PATH is your ca bundle path in the device storage.

    You can download and copy cacert.pem to Android assets or the device internal storage to get TLS working for libcurl.

Working Examples

  • See this minimal example which calls curl from Android app, using JNI to use libcurl: AndroidCurlExample. It includes Android.mk setup and JNI configurations.

  • Checkout this more complex repo to see how to integrate other compiled static libraries into an existing Android project, including Android.mk setup and JNI configurations.

About

Compile openssl and curl for Android

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%