VM Aborting: Fatal Signal 6 (SIGABRT) at 0x00001247 (code = -6)

I am using lollipop version for eclipse.

I get this error:

Cancel interrupt

Fatal signal 6 (SIGABRT) at 0x00001247 (code = -6)

Below I posted the full stack:

Stacktrace:

01-30 04:11:43.053: E/dalvikvm(4679): VM aborting 01-30 04:11:43.053: A/libc(4679): Fatal signal 6 (SIGABRT) at 0x00001247 (code=-6), thread 4679 (e.quranmadeeasy) 01-30 04:11:43.541: D/dalvikvm(4749): GC_FOR_ALLOC freed 124K, 6% free 3345K/3528K, paused 2ms, total 2ms 01-30 04:11:43.541: I/dalvikvm-heap(4749): Grow heap (frag case) to 4.395MB for 1127532-byte allocation 01-30 04:11:43.541: D/dalvikvm(4749): GC_FOR_ALLOC freed 0K, 4% free 4446K/4632K, paused 1ms, total 1ms 

Logcat did not indicate an error string. So I did not know how to solve this error. I tried this answer . But that does not help for me. Any help is mostly appreciated. Thanks.

+5
source share
2 answers

Texview content exceeds the size of the gridview table and throws a fatal exception. I am reducing the content of text content in the database and resolving this error.

0
source

Do you use your own method? Can you get a DEBUG stack? It will be displayed on logcat, or you can find it on / data / gravestones. If you find, you can get such information

 backtrace: #00 pc 0000d1a0 /system/lib/libc.so (write+12) #01 pc 0001aac1 /system/lib/libc.so (__sflush+48) #02 pc 0001bad7 /system/lib/libc.so (_fwalk+30) #03 pc 0001f0d9 /system/lib/libc.so (__cxa_finalize+132) #04 pc 0001f40b /system/lib/libc.so (exit+6) #05 pc 00016f9d /system/lib/libc.so (__libc_init+40) #06 pc 000040a4 /system/bin/toolbox 

Then you can find the problem, use addr2line to get the position by code. Read more about addr2line here: How to use addr2line in Android

+1
source

Source: https://habr.com/ru/post/1212252/


All Articles