hi when i am trying to run my android application at that time " The application has stopped unexpactadly,Please try again" and force to close application. it comes every time. can anyone try to solve this issue? thanks
+2
A:
Just run "adb logcat
" or use the log viewer built into Eclipse and you should find a stack trace from the exception that caused the crash.
Alnitak
2009-07-15 13:31:56
+1
A:
Check the logs to see what exactly happened.
Either issue this command in the command-line interface
adb logcat
or check the log(cat)
jitter
2009-07-15 13:32:17
A:
Did you remember to register your Activity in the manifest file?
Andrew Burgess
2009-07-15 16:52:43
+2
A:
Use the Dalvik debugger. Start the debugger from your commandpromt by typing: ddms
ddms is located within the tools folder where you installed the sdk. The debugger outputs all kind of info and errors.
PHP_Jedi
2009-07-16 12:52:39