Skip to content Skip to sidebar Skip to footer

My Application Crashes After Showing The Splash Screen On A Real Device, But Not On A Virtual One

I have created an application with Android Studio, never change a single word in any file. When trying to run it on real device I got the following error: following is logcat. plea

Solution 1:

According to your log lots of frames is skipping when application is running. So maybe you should profile your GPU and see where is the problem from. Here are some links that maybe helpful :

Meaning of Choreographer

inspect GPU rendering speed and overdraw

and it will be helpful if you share your code.

Solution 2:

This is a bug in ListView in android Api < 4.1 and you can't prevent it i think, just try to remove lines that use lookForSelectablePosition or you can increase minSdkVersion

Post a Comment for "My Application Crashes After Showing The Splash Screen On A Real Device, But Not On A Virtual One"