Android 4.4.2 – java.lang.RuntimeException: Performing stop of activity that is not resumed

That doesn’t seem right to me. The splash activity would now be the top activity in the stack, so the HomeActivity onStop lifecycle method would get called eventually. Coincidentally, I moved the startActivity call for the splash activity from onCreate to onResume in the HomeActivity, and the error goes away.

Leave a Comment