I've looked through a lot of other threads about this but haven't had any luck yet with their solutions. When I launch my app for the first time, I noticed that onResume is being called after onCreate. (not sure why) My problem is when I try to run the application for the second time. Neither onCreate nor onResume get called, it just sits there. ALso, I have these setting set in my manifest:
android:clearTaskOnLaunch="true"
android:screenOrientation="landscape"
android:noHistory="true"
If I ever want to run my app more than once, I have to go into settings->applications->app-name->force-close
(I don't have access to look for any loops or bad bugs that might be causing the sticking because I'm using a library with it's own threads.)
Is there a way I can fix this?