acra - Android app bug reporting -


i aware there many bug reporting tools, such acra, can generate content-rich crash reports.

but question is: possible identify bugs don't cause crash? example, got user feedback app:

images low quality, zoom in blurry pixelation because don't load full sized image.

this bug doesn't cause crash; in case, how can catch them improve app? because if user doesn't complain, unaware of problem.

you can't. need way in code detect , send event. google analytics, example, allows send custom events analytics, still have generated code:

public void loadimagetoview(imageview iv) {     if (/* criteria */)         mytracker.sendevent("bug_report", "image_load", "failed", /* optional value */);     // ... } 

you add feature in app allows user feedback send device information well, think that's best can do. there no way auto-detect bugs in app.

further reading:


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -