网上找文章,看编译需要移植多个库。
后面觉得Android本来就应该支持这些,在/system/lib目录下,可以找到对应的so.
需要:libcurl.so, libssl.so, libcrypto.so, libc++.so。
然后直接链接使用了,
注意用https的时候可能会出现
Getting error in Curl - Peer certificate cannot be authenticated with known CA certificates
证书认证失败。
在开始通信时,请将curl_easy_setopt(pCURL,CURLOPT_SSL_VERIFYPEER,false);
不进行证书检查。