liudongmiao / curl-android

curl for android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

curl for android demo.

how to generate libcurl:
0. download aosp (part of it should be ok)

1. generate libc, libssl, liblog, and so
   shell> make libssl liblog
2. edit jni/configure.sh, change the default settings:
   read the script carefully..normally you can keep it as is
3. run curl-android/jni/configure.sh
   if there are any error, check and fix...
4. generate libcurl
   shell> ndk-build ANDROID_SOURCE=$ANDROID_SOURCE
5. strip debug from libcurl
   shell> arm-eabi-strip -g /path/to/libcurl.so

libcurl.so size:
   (default is ftp, https with ares)
   https: ~169K (including http, https)
    ares: ~28K (adding to https, with ares support)
    ipv6: ~0K (no extra size)
   +full: ~278K (all protocols, with ares)

About

curl for android

License:BSD 2-Clause "Simplified" License


Languages

Language:Java 54.4%Language:C 41.3%Language:Shell 2.4%Language:Makefile 1.8%