2016年11月15日火曜日

[Android] "android stack corruption detectedadb logcat"

When I logged some debug information, logcat was stopped. Never get new logcat message from Android.

One reason of this issue is included "BINARY" strings in logcat buffer.

So you need clear logcat buffer and you can get newer message.

adb logcat -c

and

adb logcat

I hope Google fix this "BINARY" string issue in adb logcat.