Hi,<br><br>I am a new guy here since today but here is how I debug my application outside of QtCreator:<br><br>$ cd $YOUR_APP_PATH/android<br>$ mkdir jni && touch jni/Android.mk<br>$ rm obj/local/armeabi/gdb.setup<br>
$ ndk-gdb --start<br><br>This command from the Android NDK will do all the work for you. The
"touch jni/Android.mk" is because the script expects this file to be
available which is not the case with Necessitas. The "rm
obj/local/armeabi/gdb.setup" thing is needed if you run the script more
then once.<br>
<br>In addition, you might want to set the path to debug symbols in gdb this way:<br><br>(gdb) set solib-search-path $YOUR_APP_PATH/android/libs/armeabi/<br><br>Regards,<br>Gabi Julien<br>