Curl Library For Android
After much struggling, I managed to setup this Android NDK project on eclipse: https://github.com/gcesarmza/curl-android-ios ...and now it runs. All it does is connect to www.goog
Solution 1:
The test project that you reproduced does only this, downloadUrl.
If you want something else, you need to write (in C or C++) your own code that uses libCURL. You can start with a generic tutorial.
You will also need to define some JNI wrapper, e.g.
native bool pushFile(String file)
Alternatively, you can use an existing JNI wrapper.
Post a Comment for "Curl Library For Android"