10-12 17:32:02.726 1120 1159 I am_anr : [0,17331,com.flipkart.android,955792964,Input dispatching timed out (Waiting to send key event because the focused window has not finished processing all of the input events that were previously delivered to it. Outbound queue length: 0. Wait queue length: 1.)]
1120 1754 I am_crash: [17331,0,com.flipkart.android,955792964,java.lang.OutOfMemoryError,Failed to allocate a 503316488 byte allocation with 16765216 free bytes and 135MB until OOM,Arrays.java,3352]
分析得知,应用主线程执行GC操作,导致主线程内存被block住,由于当前没有打印出当前com.flipkart.android申请的内存对象有多少,
当时查看后续log,发现在发生ANR差不多的时候,com.flipkart.android发生了OOM行为,代表申请的内存对象很多,
,导致GC扫描时间过程过长,产生ANR.