A recursive attempt to load the library. What does this mean in Android?

I am working with Sroid for SIP for VoIP. The application successfully accepts calls. However, when the call is initiated, some errors occur.

There are no errors in the logs, but the information says:

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

Can someone explain what the problem is, and how can we solve it?

+6
source share
1 answer

This warning occurs when you try to load your own library when it is already loaded. You can safely ignore this warning as nothing happens, except to print this warning.

0
source

All Articles