# curl-android-ios **Repository Path**: even3yu/curl-android-ios ## Basic Information - **Project Name**: curl-android-ios - **Description**: Static libcurl to be used in Android and iOS apps. Build scripts included. No Android source required - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-13 - **Last Updated**: 2021-03-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README curl-android-ios ================ The goal of this project is to provide a pre-compiled version of libcurl to be used in Android and iOS. It uses cURL from the upstream repository and it's updated frequently. For Android, it also uses OpenSSL from its upstream repository. If you want to build the library, scripts are provided for both platforms. Test projects are also provided for both iOS and Android. # Building * Clone this repo `git clone git@github.com:gcesarmza/curl-android-ios.git` * Clone submodules `git submodule init && git submodule update` * Make sure you have installed autoconf, automake and libtool or install them with `apt-get` or `brew` * When building on Mac OS make sure you have Xcode Command Line Developer Tools installed ``` xcode-select --install ``` ## Building for Android: * Download Android NDK ``` cd curl-android-ios/curl-compile-scripts export NDK_ROOT=PATH_WHERE_NDK_IS ./build_Android.sh ``` ## Building for iOS ``` cd curl-android-ios/curl-compile-scripts ./build_iOS.sh ```