Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recursive attempt to load library - What does that mean in android?

I am working with android SIP for VoIP. The application is receiving calls successfully. However, initiation of a call is having some bugs.

There is no error in the logs but info says:

" I/art: Thread[1,tid=23775,WaitingForJniOnLoad,Thread*=0xb4f07800,peer=0x759512e0,"main"] recursive attempt to load library "/system/lib/librtp_jni.so" "

Can anyone explain what is the problem and how could we possible solve it?

like image 300
Muhammad Abdullah Avatar asked Jun 09 '16 20:06

Muhammad Abdullah


1 Answers

That warning originates when you attempt to load a native library while it was already loaded. You can safely ignore this warning as nothing happens except for printing that warning.

like image 161
Tobrun Avatar answered Sep 19 '22 02:09

Tobrun