[Solved] Unfortunately App has stopped


From the log what it says is you “did not call through to super.onResume()”
So in your Activity class if you are overriding ‘onResume’ it should be like below

protected void onResume()
{
    super.onResume();//This is important

    //Your code goes here
}

If you have done this already please post your Activity code

solved Unfortunately App has stopped