I got this exception on my application running on an Huawei P6 with Android 4.4.2
threadid=1: thread exiting with uncaught exception (group=0x41601c50)
No stacktrace given, every other device I tested (SG Ace 2, Nexus 7, Nexus 5, SGS3) runs the code fine.
This is the code getting executed when the application crashes:
@Override
protected void onResume(){
super.onResume();
if (System.currentTimeMillis()/1000 - Singleton.getInstance().getStoptime() > constants.DISPOSE_TIMEOUT) {
Singleton.getInstance().destroyInstance();
Intent intent = new Intent(getApplicationContext(), main_activity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
return;
}
}
EDIT: Full logcat of the whole phone after the crash can be found here: http://pastebin.com/uuuSwVAn