android - App crash when requesting friend list -
i got strange crash.
user login app correctly. i'm correctly calling uilifecyclehelper methods code.
when try perfrom simple request (get user's friends list) app crash in brutal way.
here function make app crash:
private void fetchuserfriends() { //gather friend list session session = session.getactivesession(); if( session != null && session.isopened() ) { request.newmyfriendsrequest(session.getactivesession(), new request.graphuserlistcallback() { @override public void oncompleted(list<graphuser> users, response response) { if (response.geterror() == null) { //use friends } else { //print error } } }).executeasync(); } }
i've digged little bit , seems instruction making whole app crash every time this:
connection.getresponsecode()
internally doing connection.getinputstream()
here facebook reference: https://github.com/facebook/facebook-android-sdk/blob/master/facebook/src/com/facebook/response.java?source=cc#l301
and here's crash log:
01-31 18:57:34.866 16008-16157/com.myapp.example a/libc﹕ fatal signal 11 (sigsegv) @ 0x00000000 (code=1), thread 16157 (asynctask #1) 01-31 18:57:34.966 179-179/? i/debug﹕ *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 01-31 18:57:34.966 179-179/? i/debug﹕ build fingerprint: 'google/hammerhead/hammerhead:4.4.2/kot49h/937116:user/release-keys' 01-31 18:57:34.966 179-179/? i/debug﹕ revision: '11' 01-31 18:57:34.966 179-179/? i/debug﹕ pid: 16008, tid: 16157, name: asynctask #1 >>> com.myapp.example <<< 01-31 18:57:34.966 179-179/? i/debug﹕ signal 11 (sigsegv), code 1 (segv_maperr), fault addr 00000000 01-31 18:57:35.036 179-179/? i/debug﹕ r0 00000000 r1 00000000 r2 7878a085 r3 00000017 01-31 18:57:35.036 179-179/? i/debug﹕ r4 00000006 r5 7878a086 r6 00000000 r7 ffffffff 01-31 18:57:35.036 179-179/? i/debug﹕ r8 00000001 r9 40ad6130 sl 00000017 fp 7878a085 01-31 18:57:35.036 179-179/? i/debug﹕ ip 744c4b34 sp 78d82990 lr 744b909d pc 40ac0f2e cpsr 600e0030 01-31 18:57:35.036 179-179/? i/debug﹕ d0 0000000000000000 d1 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d2 0000000000000000 d3 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d4 36201920e71141ae d5 d79404659c7eaae1 01-31 18:57:35.036 179-179/? i/debug﹕ d6 5f1ab8125a9713ab d7 2af5aac9dc89c133 01-31 18:57:35.036 179-179/? i/debug﹕ d8 0000000000000000 d9 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d10 0000000000000000 d11 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d12 0000000000000000 d13 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d14 0000000000000000 d15 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d16 0000000000000000 d17 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d18 4839349042576f78 d19 e71141aeb758fe2b 01-31 18:57:35.036 179-179/? i/debug﹕ d20 c047800000000000 d21 c060800000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d22 0000000000000000 d23 c047800000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d24 0000000000000000 d25 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d26 3ff0000000000000 d27 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d28 3ff0000000000000 d29 0000000000000000 01-31 18:57:35.036 179-179/? i/debug﹕ d30 0000000000000000 d31 c060800000000000 01-31 18:57:35.036 179-179/? i/debug﹕ scr 60000012 01-31 18:57:35.046 179-179/? i/debug﹕ backtrace: 01-31 18:57:35.046 179-179/? i/debug﹕ #00 pc 00026f2e /system/lib/libssl.so (ssl_select_next_proto+49) 01-31 18:57:35.046 179-179/? i/debug﹕ #01 pc 00007099 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ #02 pc 0002f2f3 /system/lib/libssl.so (ssl_parse_serverhello_tlsext+434) 01-31 18:57:35.046 179-179/? i/debug﹕ #03 pc 0001810d /system/lib/libssl.so (ssl3_get_server_hello+1004) 01-31 18:57:35.046 179-179/? i/debug﹕ #04 pc 00017517 /system/lib/libssl.so (ssl3_connect+566) 01-31 18:57:35.046 179-179/? i/debug﹕ #05 pc 00027ccb /system/lib/libssl.so (ssl_do_handshake+50) 01-31 18:57:35.046 179-179/? i/debug﹕ #06 pc 0000aeb3 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ #07 pc 0001dbcc /system/lib/libdvm.so (dvmplatforminvoke+112) 01-31 18:57:35.046 179-179/? i/debug﹕ #08 pc 0004e123 /system/lib/libdvm.so (dvmcalljnimethod(unsigned int const*, jvalue*, method const*, thread*)+398) 01-31 18:57:35.046 179-179/? i/debug﹕ #09 pc 00026fe0 /system/lib/libdvm.so 01-31 18:57:35.046 179-179/? i/debug﹕ #10 pc 0002dfa0 /system/lib/libdvm.so (dvmmterpstd(thread*)+76) 01-31 18:57:35.046 179-179/? i/debug﹕ #11 pc 0002b638 /system/lib/libdvm.so (dvminterpret(thread*, method const*, jvalue*)+184) 01-31 18:57:35.046 179-179/? i/debug﹕ #12 pc 00060581 /system/lib/libdvm.so (dvmcallmethodv(thread*, method const*, object*, bool, jvalue*, std::__va_list)+336) 01-31 18:57:35.046 179-179/? i/debug﹕ #13 pc 000605a5 /system/lib/libdvm.so (dvmcallmethod(thread*, method const*, object*, jvalue*, ...)+20) 01-31 18:57:35.046 179-179/? i/debug﹕ #14 pc 0005528b /system/lib/libdvm.so 01-31 18:57:35.046 179-179/? i/debug﹕ #15 pc 0000d170 /system/lib/libc.so (__thread_entry+72) 01-31 18:57:35.046 179-179/? i/debug﹕ #16 pc 0000d308 /system/lib/libc.so (pthread_create+240) 01-31 18:57:35.046 179-179/? i/debug﹕ stack: 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82950 1e43b5c6 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82954 e20d00d8 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82958 00000002 01-31 18:57:35.046 179-179/? i/debug﹕ 78d8295c 744b8fd5 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82960 00000002 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82964 744b8fd5 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82968 40a6bf6c /system/lib/libcrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d8296c 40a0a8fd /system/lib/libcrypto.so (crypto_lock+40) 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82970 75b198f8 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82974 00000000 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82978 00000000 01-31 18:57:35.046 179-179/? i/debug﹕ 78d8297c 000070a4 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82980 00000002 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82984 744b8fd5 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82988 00000002 01-31 18:57:35.046 179-179/? i/debug﹕ 78d8298c 744b8fd5 /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ #00 78d82990 40a6bf6c /system/lib/libcrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82994 78d82a10 [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d82998 78d82a0c [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d8299c 7878a085 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829a0 00000017 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829a4 7878a085 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829a8 78501888 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829ac 78d82a0c [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829b0 78d82a10 [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829b4 75a92d68 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829b8 40ad6130 /system/lib/libssl.so 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829bc 00000017 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829c0 7878a081 [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829c4 744b909d /system/lib/libjavacrypto.so 01-31 18:57:35.046 179-179/? i/debug﹕ #01 78d829c8 00000000 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829cc ffffffff 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829d0 7878a09c [anon:libc_malloc] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829d4 78d82a48 [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829d8 78d82a48 [stack:16157] 01-31 18:57:35.046 179-179/? i/debug﹕ 78d829dc 7878a085 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829e0 00003374 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829e4 40ac92f5 /system/lib/libssl.so (ssl_parse_serverhello_tlsext+436) 01-31 18:57:35.056 179-179/? i/debug﹕ #02 78d829e8 00000017 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829ec 00000000 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829f0 40ad15a5 /system/lib/libssl.so 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829f4 00000000 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829f8 00000001 01-31 18:57:35.056 179-179/? i/debug﹕ 78d829fc 78d82a4c [stack:16157] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a00 7878a098 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a04 7878a09c [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a08 75a92d68 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a0c 75a92f58 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a10 40a8edc0 /system/lib/libcrypto.so 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a14 75a92d68 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a18 00000068 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a1c 7878a034 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a20 75a17078 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ 78d82a24 7878a057 [anon:libc_malloc] 01-31 18:57:35.056 179-179/? i/debug﹕ ........ ........ 01-31 18:57:35.056 179-179/? i/debug﹕ memory near r2: 01-31 18:57:35.056 179-179/? i/debug﹕ 7878a064 b8125a97 c1335f1a aac9dc89 23002af5 01-31 18:57:35.056 179-179/? i/debug﹕ 7878a074 c08d7bf1 20000011 010001ff 00743300 01-31 18:57:35.056 179-179/? i/debug﹕ 7878a084 70730617 332f7964 64707306 08322f79 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a094 70747468 312e312f 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0a4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0b4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0c4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0d4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0e4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0f4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a104 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a114 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a124 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a134 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a144 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a154 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ memory near r5: 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a064 b8125a97 c1335f1a aac9dc89 23002af5 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a074 c08d7bf1 20000011 010001ff 00743300 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a084 70730617 332f7964 64707306 08322f79 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a094 70747468 312e312f 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0a4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0b4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0c4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0d4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0e4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0f4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a104 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a114 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a124 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a134 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a144 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a154 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ memory near r9: 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6110 00000001 00000020 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6120 00000105 0000c030 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6130 00000001 40acc60f 0300c011 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6140 00000001 00000004 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6150 00000041 0000c030 00000080 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6160 00000001 40acc621 0300c012 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6170 00000001 00000002 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6180 00000181 0000c030 000000a8 000000a8 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6190 00000001 40acc638 0300c013 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61a0 00000001 00000040 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61b0 00000181 0000c030 00000080 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61c0 00000001 40acc64d 0300c014 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61d0 00000001 00000080 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61e0 00000181 0000c030 00000100 00000100 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad61f0 00000001 40acc662 0300c015 00000080 01-31 18:57:35.066 179-179/? i/debug﹕ 40ad6200 00000004 00000020 00000002 00000002 01-31 18:57:35.066 179-179/? i/debug﹕ memory near fp: 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a064 b8125a97 c1335f1a aac9dc89 23002af5 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a074 c08d7bf1 20000011 010001ff 00743300 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a084 70730617 332f7964 64707306 08322f79 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a094 70747468 312e312f 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0a4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0b4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0c4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0d4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0e4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a0f4 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a104 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a114 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a124 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a134 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a144 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ 7878a154 00000000 00000000 00000000 00000000 01-31 18:57:35.066 179-179/? i/debug﹕ memory near ip: 01-31 18:57:35.066 179-179/? i/debug﹕ 744c4b14 40a266e1 409eaaf9 40a1cd21 40a1c9c5 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b24 40a1d70d 40a159cd 40a20d41 400f2021 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b34 40ac0efd 400ed7dc 400ed8e0 40a34091 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b44 40ac0775 4013a927 400db3b1 402b35b5 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b54 40a2919d 40a21a49 40a218b5 40a21851 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b64 40a21dd9 40a23ec9 40104235 40a23ea9 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b74 40a23f8d 400ecc01 400f2415 400f0ef5 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b84 402b36f5 40ac0f79 40ac3e9d 40a5bbfd 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4b94 409f45f5 409f46dd 40a5bc45 409f7799 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4ba4 409eda29 409f025d 40a5b385 40a4eef9 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4bb4 409f62f5 409f9a5d 40a29ad9 409f9b01 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4bc4 409e9905 40a2a135 40a19f01 40a1a265 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4bd4 40a19a5d 40a19c69 40a1a09d 40a199d9 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4be4 40a19e8d 40a33f39 40a19e99 40a19e91 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4bf4 40a19d6d 40a2b839 40a2b73d 40a2bb79 01-31 18:57:35.076 179-179/? i/debug﹕ 744c4c04 409eab01 40a1a365 409e89a1 409f3b61 01-31 18:57:35.076 179-179/? i/debug﹕ memory near sp: 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82970 75b198f8 00000000 00000000 000070a4 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82980 00000002 744b8fd5 00000002 744b8fd5 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82990 40a6bf6c 78d82a10 78d82a0c 7878a085 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829a0 00000017 7878a085 78501888 78d82a0c 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829b0 78d82a10 75a92d68 40ad6130 00000017 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829c0 7878a081 744b909d 00000000 ffffffff 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829d0 7878a09c 78d82a48 78d82a48 7878a085 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829e0 00003374 40ac92f5 00000017 00000000 01-31 18:57:35.076 179-179/? i/debug﹕ 78d829f0 40ad15a5 00000000 00000001 78d82a4c 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a00 7878a098 7878a09c 75a92d68 75a92f58 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a10 40a8edc0 75a92d68 00000068 7878a034 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a20 75a17078 7878a057 40ad6130 00000020 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a30 00001110 40ab2111 78d82a48 78d82a44 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a40 75a92d68 00000001 78501888 7878a07a 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a50 75a92d68 00001120 78501888 744b91fd 01-31 18:57:35.076 179-179/? i/debug﹕ 78d82a60 00000000 00001120 00001000 40ab151b 01-31 18:57:35.076 179-179/? i/debug﹕ code around pc: 01-31 18:57:35.076 179-179/? i/debug﹕ 40ac0f0c d02c2b00 9f0f9701 21009102 4001f81b 01-31 18:57:35.076 179-179/? i/debug﹕ 40ac0f1c 0801f101 eb0bb1cf eb0b0001 90030508 01-31 18:57:35.076 179-179/? i/debug﹕ 40ac0f2c f8162000 f1009000 454c0a01 eb06d109 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f3c 4628010a f7e54622 4601ef8c 29002001 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f4c eb0ad00a 42b80009 eb08d3eb 9a040104 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f5c 42912002 e000d3da 99029e03 1c729f01 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f6c 7832603a b005700a 8ff0e8bd 3178f8d0 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f7c 2100600b bf182b00 117cf890 47706011 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f8c 11a4f8c0 21a8f8c0 bf004770 11acf8c0 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0f9c 21b0f8c0 bf004770 4605b570 f8d54614 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0fac 460e01bc bf182800 ee02f7e5 f240480a 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0fbc 490a6296 44014478 f7e54620 2101edee 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0fcc 01bcf8c5 4631b130 f7e54622 2100ee2e 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0fdc 41c0f8c5 bd704608 00013a84 ffffb5ae 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0fec 4605b570 f8d54614 460e019c bf182800 01-31 18:57:35.086 179-179/? i/debug﹕ 40ac0ffc eddef7e5 f240480a 490a62aa 44014478 01-31 18:57:35.086 179-179/? i/debug﹕ code around lr: 01-31 18:57:35.086 179-179/? i/debug﹕ 744b907c 46052121 f7fe4640 6a6aef98 b13c6aab 01-31 18:57:35.086 179-179/? i/debug﹕ 744b908c 000ce88d 46314638 9b084622 ef74f7fe 01-31 18:57:35.086 179-179/? i/debug﹕ 744b909c e8bd2000 b53881fc b1884604 b1556a05 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90ac ffccf7ff 68036829 47906d9a f7fe4628 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90bc 2000ef82 21006220 60e12001 bd386161 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90cc b508bd38 6d5a6803 bd084790 6803b508 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90dc 47906dda b508bd08 6fda6803 bd084790 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90ec 6804b510 4084f8d4 bd1047a0 b513b40c 01-31 18:57:35.086 179-179/? i/debug﹕ 744b90fc 6804ab04 2b04f853 40c8f8d4 47a09301 01-31 18:57:35.086 179-179/? i/debug﹕ 744b910c 401ce8bd 4770b002 b513b40c 6804ab04 01-31 18:57:35.086 179-179/? i/debug﹕ 744b911c 2b04f853 40f8f8d4 47a09301 401ce8bd 01-31 18:57:35.086 179-179/? i/debug﹕ 744b912c 4770b002 b513b40c 6804ab04 2b04f853 01-31 18:57:35.086 179-179/? i/debug﹕ 744b913c 41ccf8d4 47a09301 401ce8bd 4770b002 01-31 18:57:35.086 179-179/? i/debug﹕ 744b914c 6803b508 229cf8d3 bd084790 6803b508 01-31 18:57:35.086 179-179/? i/debug﹕ 744b915c 22acf8d3 bd084790 6804b510 42b0f8d4 01-31 18:57:35.086 179-179/? i/debug﹕ 744b916c bd1047a0 6803b508 32b4f8d3 bd084798 01-31 18:57:35.316 779-836/? i/bootreceiver﹕ copying /data/tombstones/tombstone_02 dropbox (system_tombstone) 01-31 18:57:35.316 779-16174/? w/activitymanager﹕ force finishing activity com.myapp.example/.ui.activity.builderactivity 01-31 18:57:35.346 779-1160/? i/windowstate﹕ win death: window{43688bd8 u0 com.myapp.example/com.myapp.example.ui.activity.feedactivity} 01-31 18:57:35.346 779-850/? w/inputdispatcher﹕ channel '4379edc0 com.myapp.example/com.myapp.example.ui.activity.builderactivity (server)' ~ consumer closed input channel or error occurred. events=0x9 01-31 18:57:35.346 779-850/? e/inputdispatcher﹕ channel '4379edc0 com.myapp.example/com.myapp.example.ui.activity.builderactivity (server)' ~ channel unrecoverably broken , disposed! 01-31 18:57:35.346 779-22384/? i/activitymanager﹕ process com.myapp.example (pid 16008) has died. 01-31 18:57:35.356 779-1162/? w/inputdispatcher﹕ attempted unregister unregistered input channel '4379edc0 com.myapp.example/com.myapp.example.ui.activity.builderactivity (server)' 01-31 18:57:35.356 779-1162/? i/windowstate﹕ win death: window{4379edc0 u0 com.myapp.example/com.myapp.example.ui.activity.builderactivity} 01-31 18:57:35.356 779-22384/? w/activitymanager﹕ force removing activityrecord{42db95f0 u0 com.myapp.example/.ui.activity.feedactivity t525}: app died, no saved state 01-31 18:57:35.366 182-182/? d/zygote﹕ process 16008 terminated signal (11) 01-31 18:59:36.526 1055-7961/? w/binder﹕ caught runtimeexception binder stub implementation. java.lang.nullpointerexception @ android.inputmethodservice.iinputmethodwrapper.setsessionenabled(iinputmethodwrapper.java:280) @ com.android.internal.view.iinputmethod$stub.ontransact(iinputmethod.java:129) @ android.os.binder.exectransact(binder.java:404) @ dalvik.system.nativestart.run(native method)
it's strange bug , crashes time. know how fix it?
update full scenario
this scenario. go fb account , delete app application's permission list have clean environment. after install app , connect facebook , make "get fb friends request" works intended. if close app , try again , make same request crashes on connection.getinputstream (as described in middle of question).
try take @ okhttp issue:
https://github.com/square/okhttp/issues/184
i had similar problem google analytics because okhttp changes global ssl context. removing okhttp fixed issue, can try copy , paste code on different project no external libs?
Comments
Post a Comment