Android NDK integrated so library C++ error: java.lang.UnsatisfiedLinkError: dlopen failed: library “libc++_shared.so”

Android NDK integrated so library C++ error: java.lang.UnsatisfiedLinkError: dlopen failed: library "libc++_shared.so"

java.lang.UnsatisfiedLinkError: dlopen failed: library "libc++_shared.so"

Solution: Add the arguments configuration in the cmake of the externalNativeBuild block of app's build.gradle:

        externalNativeBuild {
            cmake {
                arguments "-DANDROID_STL=c++_shared"
            }
        }

Guess you like

Origin blog.csdn.net/zhangphil/article/details/130429582
Recommended