After many attempts, I managed to set up this Android NDK project on eclipse:
https:
... and now it works. All he does is connect to www.google.com: This is the curl call I make in the main operation:
String url = "https://www.google.com"; byte[] content = downloadUrl(url);
I am new to the NDK of this CURL library, how can I execute a more complex CURL request such as this file upload command ???
curl -F file=@audio.wav http:
source share