Help running hello world Example

Hello all, first of all i apologize if this is not the correct section to place this post, i followed a tutorial found here [[http://www.cxo2.com/2013/10/developing-game-with-cocos2d-x-in-windows/]] i have set everything up according to this tutorial, when i try to compile the hello world example it runs fine, i get no errors, up until the applications tries to launch and then i get this error in the logcat

02-13 11:01:25.669: E/AndroidRuntime(17208): FATAL EXCEPTION: main
02-13 11:01:25.669: E/AndroidRuntime(17208): java.lang.UnsatisfiedLinkError: Couldn’t load cocos2dcpp from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.example.hello-2.apk,libraryPath=/data/app-lib/com.example.hello-2]: findLibrary returned null
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.Runtime.loadLibrary(Runtime.java:355)
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.System.loadLibrary(System.java:525)
02-13 11:01:25.669: E/AndroidRuntime(17208): at com.example.hello.HelloWorld.(HelloWorld.java:46)
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.Class.newInstanceImpl(Native Method)
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.Class.newInstance(Class.java:1130)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.Instrumentation.newActivity(Instrumentation.java:1078)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2210)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2349)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.ActivityThread.access$700(ActivityThread.java:159)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1316)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.os.Handler.dispatchMessage(Handler.java:99)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.os.Looper.loop(Looper.java:137)
02-13 11:01:25.669: E/AndroidRuntime(17208): at android.app.ActivityThread.main(ActivityThread.java:5419)
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.reflect.Method.invokeNative(Native Method)
02-13 11:01:25.669: E/AndroidRuntime(17208): at java.lang.reflect.Method.invoke(Method.java:525)
02-13 11:01:25.669: E/AndroidRuntime(17208): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1187)
02-13 11:01:25.669: E/AndroidRuntime(17208): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)
02-13 11:01:25.669: E/AndroidRuntime(17208): at dalvik.system.NativeStart.main(Native Method)

The application gets installed in my phone but it is when i try to launch it that i get this error.

I’m new to cocos2d, i’ve been developing with Java and Basic4Android for about 4 years now, i would really appreciate it if someone could help me with this issue, i really like this platform and i need to get this running so i can start developing using cocos2d.

Thanks in advance to everyone and i look forward to your suggestons.

Walter