Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

while calling map activity again and again it will produce me error #1401

Closed
shrutiWV opened this issue Oct 8, 2018 · 10 comments
Closed

while calling map activity again and again it will produce me error #1401

shrutiWV opened this issue Oct 8, 2018 · 10 comments

Comments

@shrutiWV
Copy link

shrutiWV commented Oct 8, 2018

while running your code in nougat device with using below dependancy

implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.20.0'
implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.20.0'

i follow below procedure

1.home activity
2.call map activity from home
3.press back and back to hoome
4. again call map activity from home
repeat this again and again

it will produce me error :
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x40000 in tid 14643 (FinalizerDaemon)

@Guardiola31337
Copy link
Contributor

Hey @shrutiWV 👋 thanks for reaching out and reporting your error.

Could you add some more information for reproducing the error (minimal example) or any other specifics around your test setup? Are you able to provide more logs? Do you have some more information on used device? If there is any sample or pseudo code you can provide, that would be really helpful.

@shrutiWV
Copy link
Author

shrutiWV commented Oct 9, 2018

hey @Guardiola31337 i am using nexus 5 with OS version 6.0.1 and moto g having OS version 7.0

here is the full log of error:

10-09 15:41:23.104 196-196/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'google/hammerhead/hammerhead:6.0.1/M4B30Z/3437181:user/release-keys'
10-09 15:41:23.105 196-196/? A/DEBUG: Revision: '11'
ABI: 'arm'
pid: 23074, tid: 23082, name: FinalizerDaemon >>> com.xyz <<<
signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
10-09 15:41:23.126 196-196/? A/DEBUG: Abort message: 'art/runtime/java_vm_ext.cc:410] JNI DETECTED ERROR IN APPLICATION: thread Thread[6,tid=23082,Native,Thread*=0xacb97700,peer=0x12d69940,"FinalizerDaemon"] using JNIEnv* from thread Thread[6,tid=23082,Native,Thread*=0xacb97700,peer=0x12d69940,"FinalizerDaemon"]'
10-09 15:41:23.127 196-196/? A/DEBUG: r0 00000000 r1 00005a2a r2 00000006 r3 b416a978
r4 b416a980 r5 b416a930 r6 0000000b r7 0000010c
r8 b4cbf378 r9 b4d2a800 sl 00000001 fp 00000001
ip 00000006 sp b4169fc0 lr b6cf6b61 pc b6cf8f50 cpsr 40070010
10-09 15:41:23.152 196-196/? A/DEBUG: backtrace:
#00 pc 00041f50 /system/lib/libc.so (tgkill+12)
#1 pc 0003fb5d /system/lib/libc.so (pthread_kill+32)
10-09 15:41:23.153 196-196/? A/DEBUG: #2 pc 0001c30f /system/lib/libc.so (raise+10)
#3 pc 000194c1 /system/lib/libc.so (__libc_android_abort+34)
#4 pc 000174ac /system/lib/libc.so (abort+4)
#5 pc 00333971 /system/lib/libart.so (_ZN3art7Runtime5AbortEv+228)
#6 pc 000f45fb /system/lib/libart.so (_ZN3art10LogMessageD2Ev+2226)
#7 pc 0025aa4f /system/lib/libart.so (ZN3art9JavaVMExt8JniAbortEPKcS2+1550)
#8 pc 0025adfd /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortVEPKcS2_St9__va_list+64)
#9 pc 000fd1d1 /system/lib/libart.so (_ZN3art11ScopedCheck6AbortFEPKcz+32)
#10 pc 00102273 /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE.constprop.95+4958)
10-09 15:41:23.154 196-196/? A/DEBUG: #11 pc 00116e2d /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+456)
#12 pc 000261f3 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#13 pc 0002621d /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#14 pc 000dd3d3 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#15 pc 00076c01 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#16 pc 00076c2d /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#17 pc 00074571 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#18 pc 0005d251 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
10-09 15:41:23.155 196-196/? A/DEBUG: #19 pc 0005d2e9 /data/app/com.makani-1/lib/arm/libmapbox-gl.so
#20 pc 0005ec01 /data/app/com.xyz-1/lib/arm/libmapbox-gl.so
#21 pc 01318c6f /data/app/com.xyz-1/oat/arm/base.odex (offset 0x98d000) (void com.mapbox.mapboxsdk.maps.renderer.MapRenderer.finalize()+74)
#22 pc 71d1a819 /data/dalvik-cache/arm/system@[email protected] (offset 0x1ed6000)
10-09 15:41:24.295 196-196/? A/DEBUG: Tombstone written to: /data/tombstones/tombstone_04
10-09 15:41:24.295 196-196/? E/DEBUG: AM write failed: Broken pipe

@Guardiola31337
Copy link
Contributor

This seems an issue from the Maps SDK so I went ahead and created a ticket in mapbox-gl-native mapbox/mapbox-gl-native#13062

Thanks again!

Closing as non actionable here.

@tobrun
Copy link
Member

tobrun commented Oct 12, 2018

Reopening this issue, while the crash stems from maps SDK. It's not reproducible with a simple test or a test using the location layer plugin. This shows that there is an issue with how the navigation SDK integrates with the maps SDK.

@tobrun tobrun reopened this Oct 12, 2018
@Guardiola31337
Copy link
Contributor

Hey @shrutiWV 👋

Would you mind providing a video reproducing OP? This will give us better insight into what could be causing your problem. Thanks in advance!

@P-Zenker
Copy link

P-Zenker commented Oct 24, 2018

I had (sometimes) the same issue with 0.19.0. A more detailed log:

2018-10-24 13:43:21.175 29633-29642/my_app A/art: art/runtime/thread.cc:1097] Check failed: barrier_count > 0U (barrier_count=0, 0U=0) 
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] Runtime aborting...
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] Aborting thread:
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "FinalizerDaemon" prio=5 tid=6 Native
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=0 dsCount=0 obj=0x12c6f310 self=0x9ecc4100
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29642 nice=0 cgrp=default sched=0/0 handle=0xa7d9f920
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=R schedstat=( 33292603 26105678 76 ) utm=2 stm=0 core=2 HZ=100
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7c9d000-0xa7c9f000 stackSize=1038KB
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes= "abort lock"
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00351069  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00331729  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 003247a1  /system/lib/libart.so (_ZNK3art10AbortState10DumpThreadERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEPNS_6ThreadE+24)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00324629  /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+424)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0031b351  /system/lib/libart.so (_ZN3art7Runtime5AbortEPKc+92)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 000b526b  /system/lib/libart.so (_ZN3art10LogMessageD2Ev+1134)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 003320bd  /system/lib/libart.so (_ZN3art6Thread25PassActiveSuspendBarriersEPS0_+952)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 000cbc65  /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+244)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #08 pc 000261f3  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #09 pc 0002621d  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #10 pc 000dd3d3  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #11 pc 00076c01  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #12 pc 00076c2d  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #13 pc 00074571  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #14 pc 0005d251  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #15 pc 0005d2e9  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #16 pc 0005ec01  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #17 pc 000ae319  /system/lib/libart.so (art_quick_generic_jni_trampoline+40)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #18 pc 001644c3  /system/framework/arm/boot-core-libart.oat (???)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at com.mapbox.mapboxsdk.maps.renderer.MapRenderer.finalize(Native method)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:222)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:209)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] Dumping all threads without appropriate locks held: thread list lock mutator lock
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] All threads:
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] DALVIK THREADS (53):
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "FinalizerDaemon" prio=5 tid=6 Runnable
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=0 dsCount=0 obj=0x12c6f310 self=0x9ecc4100
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29642 nice=0 cgrp=default sched=0/0 handle=0xa7d9f920
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=R schedstat=( 73343959 39551717 101 ) utm=5 stm=1 core=0 HZ=100
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7c9d000-0xa7c9f000 stackSize=1038KB
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes= "abort lock" "mutator lock"(shared held)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00351069  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2018-10-24 13:43:21.424 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00331729  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 0034382f  /system/lib/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+622)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 0033d7bd  /system/lib/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+336)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0033d4b7  /system/lib/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+586)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 003245f5  /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+372)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 0031b351  /system/lib/libart.so (_ZN3art7Runtime5AbortEPKc+92)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 000b526b  /system/lib/libart.so (_ZN3art10LogMessageD2Ev+1134)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #08 pc 003320bd  /system/lib/libart.so (_ZN3art6Thread25PassActiveSuspendBarriersEPS0_+952)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #09 pc 000cbc65  /system/lib/libart.so (_ZN3art8CheckJNI9DeleteRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+244)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #10 pc 000261f3  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #11 pc 0002621d  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #12 pc 000dd3d3  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #13 pc 00076c01  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #14 pc 00076c2d  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #15 pc 00074571  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #16 pc 0005d251  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #17 pc 0005d2e9  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #18 pc 0005ec01  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #19 pc 000ae319  /system/lib/libart.so (art_quick_generic_jni_trampoline+40)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #20 pc 001644c3  /system/framework/arm/boot-core-libart.oat (???)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at com.mapbox.mapboxsdk.maps.renderer.MapRenderer.finalize(Native method)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:222)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:209)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "main" prio=5 tid=1 Native
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x736bd658 self=0xa8a85400
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29633 nice=-10 cgrp=default sched=0/0 handle=0xab71d534
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 5637449693 458093933 3867 ) utm=521 stm=42 core=0 HZ=100
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xbe0fd000-0xbe0ff000 stackSize=8MB
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048514  /system/lib/libc.so (__epoll_pwait+20)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00019f8d  /system/lib/libc.so (epoll_pwait+60)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00019fbd  /system/lib/libc.so (epoll_wait+12)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00011c83  /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+118)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00011b7f  /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+26)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00093811  /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00625a55  /system/framework/arm/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+96)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.nativePollOnce(Native method)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.next(MessageQueue.java:323)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:136)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.main(ActivityThread.java:6119)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.reflect.Method.invoke!(Native method)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Jit thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x0 self=0xa1617000
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29638 nice=9 cgrp=default sched=0/0 handle=0xa81a3920
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 823116460 306628850 1105 ) utm=57 stm=23 core=0 HZ=100
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa80a5000-0xa80a7000 stackSize=1022KB
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b6e41  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00344d85  /system/lib/libart.so (_ZN3art10ThreadPool7GetTaskEPNS_6ThreadE+160)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 003445b3  /system/lib/libart.so (_ZN3art16ThreadPoolWorker3RunEv+62)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 003440d9  /system/lib/libart.so (_ZN3art16ThreadPoolWorker8CallbackEPv+64)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.425 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Signal Catcher" prio=5 tid=3 WaitingInMainSignalCatcherLoop
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f160 self=0x9ecc2800
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29639 nice=0 cgrp=default sched=0/0 handle=0xa80a2920
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 541406 0 1 ) utm=0 stm=0 core=1 HZ=100
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7fa6000-0xa7fa8000 stackSize=1014KB
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048880  /system/lib/libc.so (__rt_sigtimedwait+12)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001dfdb  /system/lib/libc.so (sigwait+34)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 0032784f  /system/lib/libart.so (_ZN3art9SignalSet4WaitEv+22)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00327449  /system/lib/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+168)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 003261a9  /system/lib/libart.so (_ZN3art13SignalCatcher3RunEPv+276)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "JDWP" prio=5 tid=4 WaitingInMainDebuggerLoop
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f1f0 self=0xa1618400
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29640 nice=0 cgrp=default sched=0/0 handle=0xa7fa3920
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 1505105 878437 14 ) utm=0 stm=0 core=1 HZ=100
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7ea7000-0xa7ea9000 stackSize=1014KB
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048758  /system/lib/libc.so (__pselect6+20)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001cdd5  /system/lib/libc.so (select+88)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 003fc443  /system/lib/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+302)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002495df  /system/lib/libart.so (_ZN3art4JDWP9JdwpState3RunEv+654)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00248d7f  /system/lib/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+22)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "ReferenceQueueDaemon" prio=5 tid=5 Waiting
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f280 self=0x9ecc3c00
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29641 nice=0 cgrp=default sched=0/0 handle=0xa7ea4920
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 43541250 13349011 104 ) utm=3 stm=0 core=2 HZ=100
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7da2000-0xa7da4000 stackSize=1038KB
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b6e41  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00d1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+512)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b01ff  /system/lib/libart.so (_ZN3artL11Object_waitEP7_JNIEnvP8_jobject+32)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000557  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+74)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x060d24f3> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:150)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x060d24f3> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "FinalizerWatchdogDaemon" prio=5 tid=7 Sleeping
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f3a0 self=0x9ecc4600
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29643 nice=0 cgrp=default sched=0/0 handle=0xa7c9a920
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 568800 2666302 12 ) utm=0 stm=0 core=1 HZ=100
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7b98000-0xa7b9a000 stackSize=1038KB
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b4bad  /system/lib/libart.so (_ZN3artL12Thread_sleepEP7_JNIEnvP7_jclassP8_jobjectxi+56)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 000852bb  /system/framework/arm/boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+126)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.sleep!(Native method)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - sleeping on <0x0bccf5b0> (a java.lang.Object)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.sleep(Thread.java:371)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x0bccf5b0> (a java.lang.Object)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.sleep(Thread.java:313)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:314)
2018-10-24 13:43:21.426 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:336)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:253)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "HeapTaskDaemon" prio=5 tid=8 Blocked
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f430 self=0x9ecc4b00
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29644 nice=0 cgrp=default sched=0/0 handle=0xa7b95920
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 306967597 131270426 334 ) utm=27 stm=3 core=0 HZ=100
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7a93000-0xa7a95000 stackSize=1038KB
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 001b5911  /system/lib/libart.so (_ZN3art2gc13TaskProcessor7GetTaskEPNS_6ThreadE+228)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 001b5fc1  /system/lib/libart.so (_ZN3art2gc13TaskProcessor11RunAllTasksEPNS_6ThreadE+44)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 001615cf  /system/framework/arm/boot-core-libart.oat (Java_dalvik_system_VMRuntime_runHeapTasks__+74)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at dalvik.system.VMRuntime.runHeapTasks(Native method)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting to lock an unknown object
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:433)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Binder:29633_1" prio=5 tid=9 Native
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f5e0 self=0xa8a85900
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29645 nice=0 cgrp=default sched=0/0 handle=0xa7992920
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 33752138 57778480 228 ) utm=1 stm=1 core=0 HZ=100
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7896000-0xa7898000 stackSize=1014KB
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048654  /system/lib/libc.so (__ioctl+8)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001abdb  /system/lib/libc.so (ioctl+38)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 0003cc39  /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 0003cd35  /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0003d29f  /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 0004f695  /system/lib/libbinder.so (???)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 0000e325  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+144)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 00067d21  /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #08 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #09 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Binder:29633_2" prio=5 tid=10 Native
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f670 self=0xa1619800
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29646 nice=0 cgrp=default sched=0/0 handle=0xa7893920
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 34251204 55063541 229 ) utm=0 stm=2 core=0 HZ=100
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0xa7797000-0xa7799000 stackSize=1014KB
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048654  /system/lib/libc.so (__ioctl+8)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001abdb  /system/lib/libc.so (ioctl+38)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 0003cc39  /system/lib/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+168)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 0003cd35  /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+8)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0003d29f  /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 0004f695  /system/lib/libbinder.so (???)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 0000e325  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+144)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 00067d21  /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #08 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #09 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Profile Saver" prio=5 tid=11 Native
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c6f940 self=0xa767b400
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29649 nice=-10 cgrp=default sched=0/0 handle=0x8ef61920
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 42830312 1839532 16 ) utm=3 stm=0 core=3 HZ=100
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x8ee65000-0x8ee67000 stackSize=1014KB
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b6e41  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 0025ac25  /system/lib/libart.so (_ZN3art12ProfileSaver3RunEv+296)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 0025bf55  /system/lib/libart.so (_ZN3art12ProfileSaver21RunProfileSaverThreadEPv+52)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Measurement Worker" prio=5 tid=12 TimedWaiting
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12cf0700 self=0xa767af00
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29651 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0x8ecde920
2018-10-24 13:43:21.427 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 235405519 278468744 488 ) utm=22 stm=0 core=3 HZ=100
2018-10-24 13:43:21.438 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29694 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0x7e77f920
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 12607918 6767708 20 ) utm=0 stm=0 core=3 HZ=100
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7e67d000-0x7e67f000 stackSize=1038KB
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x0ca12ae0> (a java.lang.Object)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x0ca12ae0> (a java.lang.Object)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2077)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:438)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "firebase-iid-executor" prio=5 tid=34 TimedWaiting
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12db60d0 self=0xa1845a00
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29696 nice=0 cgrp=default sched=0/0 handle=0x7e67a920
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 18642187 9317188 5 ) utm=1 stm=0 core=3 HZ=100
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7e578000-0x7e57a000 stackSize=1038KB
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x04efb199> (a java.lang.Object)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x04efb199> (a java.lang.Object)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2077)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:438)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "GoogleApiHandler" prio=5 tid=35 Native
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12e05ca0 self=0xa1846400
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29697 nice=9 cgrp=default sched=0/0 handle=0x7e575920
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 33042499 51641981 39 ) utm=2 stm=0 core=0 HZ=100
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7e473000-0x7e475000 stackSize=1038KB
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048514  /system/lib/libc.so (__epoll_pwait+20)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00019f8d  /system/lib/libc.so (epoll_pwait+60)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00019fbd  /system/lib/libc.so (epoll_wait+12)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00011c83  /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+118)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00011b7f  /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+26)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00093811  /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00625a55  /system/framework/arm/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+96)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.nativePollOnce(Native method)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.next(MessageQueue.java:323)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:136)
2018-10-24 13:43:21.445 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.HandlerThread.run(HandlerThread.java:61)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "hwuiTask1" prio=5 tid=32 Native
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12e841f0 self=0x7e873800
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29705 nice=-2 cgrp=default sched=0/0 handle=0x7e470920
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 88012965 40069480 627 ) utm=8 stm=0 core=1 HZ=100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7e374000-0x7e376000 stackSize=1014KB
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00046c1b  /system/lib/libc.so (_ZL24__pthread_cond_timedwaitP23pthread_cond_internal_tP15pthread_mutex_tbPK8timespec+102)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00029a1b  /system/lib/libhwui.so (???)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00029991  /system/lib/libhwui.so (???)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0000e3a3  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+270)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00067d21  /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "hwuiTask2" prio=5 tid=36 Native
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12e84280 self=0x7e874c00
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29706 nice=-2 cgrp=default sched=0/0 handle=0x7e371920
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 20093749 10530363 112 ) utm=0 stm=0 core=0 HZ=100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7e275000-0x7e277000 stackSize=1014KB
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00046c1b  /system/lib/libc.so (_ZL24__pthread_cond_timedwaitP23pthread_cond_internal_tP15pthread_mutex_tbPK8timespec+102)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00029a1b  /system/lib/libhwui.so (???)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00029991  /system/lib/libhwui.so (???)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0000e3a3  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+270)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00067d21  /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00047093  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 00019bdd  /system/lib/libc.so (__start_thread+6)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "OkHttp Dispatcher" prio=5 tid=37 TimedWaiting
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d8a5e0 self=0xa1934100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29712 nice=0 cgrp=default sched=0/0 handle=0x81aea920
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 188515526 31843280 138 ) utm=18 stm=0 core=0 HZ=100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x819e8000-0x819ea000 stackSize=1038KB
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x07816c5e> (a java.lang.Object)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x07816c5e> (a java.lang.Object)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:432)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:333)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:908)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "ConnectivityThread" prio=5 tid=39 Native
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d99f70 self=0xa1933c00
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29713 nice=0 cgrp=default sched=0/0 handle=0x8194f920
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 524687 304531 3 ) utm=0 stm=0 core=2 HZ=100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x8184d000-0x8184f000 stackSize=1038KB
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048514  /system/lib/libc.so (__epoll_pwait+20)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00019f8d  /system/lib/libc.so (epoll_pwait+60)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00019fbd  /system/lib/libc.so (epoll_wait+12)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00011c83  /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+118)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00011b7f  /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+26)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00093811  /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00625a55  /system/framework/arm/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+96)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.nativePollOnce(Native method)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.next(MessageQueue.java:323)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:136)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.HandlerThread.run(HandlerThread.java:61)
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "DefaultFileSour" prio=5 tid=40 Native
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d99ca0 self=0x8e251400
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29715 nice=19 cgrp=default sched=0/0 handle=0x8174b920
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 195688235 640972601 1125 ) utm=9 stm=9 core=0 HZ=100
2018-10-24 13:43:21.446 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x8164f000-0x81651000 stackSize=1014KB
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b6e41  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 000c0265  /system/lib/libart.so (_ZN3art8CheckJNI14PushLocalFrameEP7_JNIEnvi+204)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 0005d339  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 0006d8c5  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00202399  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 0020198d  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #07 pc 00201f05  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.447 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #08 pc 0006dc13  /data/app/my_app-2/lib/arm/libmapbox-gl.so (???)
2018-10-24 13:43:21.451 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x03ccfad1> (a java.lang.Object)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.453 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x03ccfad1> (a java.lang.Object)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:432)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:333)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:908)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "OkHttp Dispatcher" prio=5 tid=51 TimedWaiting
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d1f310 self=0x7f3f7400
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29732 nice=19 cgrp=bg_non_interactive sched=0/0 handle=0x7df4a920
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 30361308 69004111 133 ) utm=2 stm=0 core=2 HZ=100
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7de48000-0x7de4a000 stackSize=1038KB
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x0158a936> (a java.lang.Object)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x0158a936> (a java.lang.Object)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:432)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:333)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:908)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.458 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "pool-6-thread-1" prio=5 tid=52 TimedWaiting
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d1f940 self=0x7c697400
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29734 nice=0 cgrp=default sched=0/0 handle=0x7bc5f920
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 5572240 4154740 6 ) utm=0 stm=0 core=3 HZ=100
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7bb5d000-0x7bb5f000 stackSize=1038KB
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x0c12b037> (a java.lang.Object)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x0c12b037> (a java.lang.Object)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2077)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:438)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "pool-7-thread-1" prio=5 tid=53 TimedWaiting
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d1f160 self=0x7c186200
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29735 nice=0 cgrp=default sched=0/0 handle=0x7bb5a920
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 22070574 5747085 50 ) utm=0 stm=0 core=2 HZ=100
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7ba58000-0x7ba5a000 stackSize=1038KB
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x072ff9a4> (a java.lang.Object)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.parkFor$(Thread.java:2127)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x072ff9a4> (a java.lang.Object)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at sun.misc.Unsafe.park(Unsafe.java:325)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:201)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2077)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:438)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1057)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "Filter" prio=5 tid=15 Native
2018-10-24 13:43:21.459 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12d1fc10 self=0x8f4d4a00
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29746 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0x8017f920
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 3660417 1010469 6 ) utm=0 stm=0 core=3 HZ=100
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x8007d000-0x8007f000 stackSize=1038KB
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00048514  /system/lib/libc.so (__epoll_pwait+20)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 00019f8d  /system/lib/libc.so (epoll_pwait+60)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 00019fbd  /system/lib/libc.so (epoll_wait+12)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 00011c83  /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+118)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00011b7f  /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+26)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00093811  /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #06 pc 00625a55  /system/framework/arm/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+96)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.nativePollOnce(Native method)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.MessageQueue.next(MessageQueue.java:323)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:136)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.os.HandlerThread.run(HandlerThread.java:61)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "GLThread 3795" prio=5 tid=38 Native
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x1347cd40 self=0x7c699700
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29747 nice=0 cgrp=default sched=0/0 handle=0x8007a920
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 143105773 104894541 405 ) utm=11 stm=1 core=0 HZ=100
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7ff78000-0x7ff7a000 stackSize=1038KB
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017418  /system/lib/libc.so (syscall+28)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b6e41  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 003f4483  /system/lib/libart.so (_ZN3artL12GoToRunnableEPNS_6ThreadE+230)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 003f4375  /system/lib/libart.so (_ZN3art12JniMethodEndEjPNS_6ThreadE+8)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 00bf26bd  /system/framework/arm/boot-framework.oat (Java_com_google_android_gles_1jni_EGLImpl_eglSwapBuffers__Ljavax_microedition_khronos_egl_EGLDisplay_2Ljavax_microedition_khronos_egl_EGLSurface_2+128)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at com.google.android.gles_jni.EGLImpl.eglSwapBuffers(Native method)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.opengl.GLSurfaceView$EglHelper.swap(GLSurfaceView.java:1158)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1554)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1259)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422] "OkHttp ConnectionPool" prio=5 tid=43 TimedWaiting
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12cf0d30 self=0x7ddf8000
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | sysTid=29749 nice=19 cgrp=bg_non_interactive sched=0/0 handle=0x7cc7f920
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 429219 57239 2 ) utm=0 stm=0 core=0 HZ=100
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | stack=0x7cb7d000-0x7cb7f000 stackSize=1038KB
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   | held mutexes=
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #00 pc 0001741c  /system/lib/libc.so (syscall+32)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b726d  /system/lib/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadExi+108)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #02 pc 002a00e1  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+528)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #03 pc 002a1923  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+258)
2018-10-24 13:43:21.460 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #04 pc 002b022b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - waiting on <0x0655730d> (a okhttp3.ConnectionPool)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at okhttp3.ConnectionPool$1.run(ConnectionPool.java:67)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   - locked <0x0655730d> (a okhttp3.ConnectionPool)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.462 29633-29642/my_app A/art: art/runtime/runtime.cc:422] 
2018-10-24 13:43:21.465 29633-29642/my_app A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 29642 (FinalizerDaemon)

Simple solution in my case, @shrutiWV. I forgot to override onDestroyView inside of my Fragment:

    public void onDestroyView() {
        super.onDestroyView();
        mapboxView.onDestroy();
    }

@danesfeder
Copy link
Contributor

Hey @shrutiWV 👋 have you double checked what @P-Zenker mentioned? Ensuring all lifecycle methods are included is important for these types of crashes. Thanks!

@danesfeder
Copy link
Contributor

@shrutiWV I'm going to go ahead and close this as stale - please feel free to cut a new ticket if you're able to reproduce.

@sjd753
Copy link

sjd753 commented Mar 29, 2019

@P-Zenker you saved my day!! After a lot of research only

public void onDestroyView() {
super.onDestroyView();
mapboxView.onDestroy();
}

this solved my issue!!

Mapbox doc doesn't include this rather they included

override fun onDestroy() {
super.onDestroy()
mapNavigationView?.onDestroy()
}

which did not help.

Please update doc for fragments @mapbox

Thanks!!!!

@danesfeder
Copy link
Contributor

Hey @sjd753 👋thanks for your documentation feedback here. We do have an example of the NavigationView in a Fragment implementation here.

I'll circle back with our documentation team with regard to how we can make this more discoverable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants