Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
crash reports — Gideros Forum

crash reports

keszeghkeszegh Member
edited December 2012 in General questions
on amazon i get crash reports about my app and although it freezes very rarely, it happened a few times since they have this feature. i want to ask if it is a problem with my app or with gideros itself. in case it is a problem with my app then where shall i look for in my lua code.
the crashes happened in fragmentergiderosActivity.java at the following places:
1. public void onDrawFrame(GL10 gl)
{
GiderosApplication.getInstance().onDrawFrame(); //here
}
2. in public boolean onTouch(View v, MotionEvent event)
{
GiderosApplication.getInstance().onTouchesCancel(size, id, x, y); //here
}
3. in public boolean onTouch(View v, MotionEvent event)
{
GiderosApplication.getInstance().onTouchesBegin(size, id, x, y, actionIndex); //here
}
4. protected void onPause()
{
mLostFocus = true;

GiderosApplication.getInstance().onPause(); //here
mGLView.onPause();

super.onPause();
}
thanks

Comments

Sign In or Register to comment.