I installed the latest versions of SDK (API 16)
and got the latest ADT. I’m now seeing these messages in the logcat, that I’m quite sure, I haven’t seen before. Does anyone have an idea about this?
06-29 23:11:17.796: I/Choreographer(691): Skipped 647 frames! The
application may be doing too much work on its main thread.
I did a search and found this link:
http://developer.android.com/reference/android/view/Choreographer.html. This is a new class introduced in API 16.
I need to know how I can determine what “too much work” my application may be doing as all my processing is done in AsyncTask
s.