I have an android app for which logcat shows:
DEBUG/StrictMode(81): StrictMode policy violation; ~duration=3376 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=151 violation=2
So is there any document which can tell me what is policy=151 violation=2 ?
I have search in android api reference, but there is only explanation and how to handle it.
StrictModeDiskReadViolation, which means that you are performing a disk read on the main application thread. – CommonsWare Jan 9 at 13:55