• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Problem with Emulators

hi
i have some problem with running my application.
my application was developed using android 2.1 updated (api level 7).
The application running on api level 8 emulator perfectly but not running properly on api level 7 emulators. the problem will be occurring on forward and rewind cases.
the problem will be "The application stopped unexpectedly.please try again"
please any one guide me to rectify the problem.
 
have you tried running it through debugger (that bug icon left of the run icon if you use eclipse)... even if you do not set up any breakpoints or such, you (usually) get much more info what happened, e.g. any exceptions occured.

you should also make sure to output any occuring exceptions in try/cach blocks... e.g.

Code:
try {
  // some code
} catch (Exception e) {
  Log.v("exception", e.toString());
}
you'll see it printed out then on the debug output window
 
Back
Top Bottom