I want to use dynamic library loading in the Android project. According to the NDK documentation, I can use the dlopen , dlsym , dlclose functions for this if I include the libdl.so library. I use it in a project, but the dlopen returns an error:

dlopen filed: "libstdc ++. so.6" not found

How to solve this problem?

  • I got the answer to the question here - Sinigr

0