Confusing error in examples

Hello,

commit https://github.com/cocos2d/cocos2d-x/commit/8ce65978614e5d4a8e69b20a32262ff3ad6abe98

-LOCAL_MODULE := curl_static_prebuilt
+LOCAL_MODULE := cocos_curl_static

now lets take a look at android examples from last release:
samples/TestCpp/proj.android/jni/Android.mk
LOCAL_STATIC_LIBRARIES := curl_static_prebuilt

this costs a lot of time to find such problem

Oh, sorry about this. The continuous integration machine works well, which covered this bug.
Currently, the linking relationship is: TestCpp~~> cocos_extension_static~~> cocos_curl_static, so TestCpp works well as before.
I should remove LOCAL_STATIC_LIBRARIES := curl_static_prebuilt from samples/TestCpp/proj.android/jni/Android.mk.
And perhaps, should we move libcurl.a from cocos2dx/platform/third_party/ to extensions/network folder? What’s your opinion?