sejn
sejn

Reputation: 2644

Fatal Exception: java.lang.UnsatisfiedLinkError dlopen failed: library "libavutil.so" not found

Facing a lot of crashes in the Android Devices with the above error

Fatal Exception: java.lang.UnsatisfiedLinkError dlopen failed: library "libavutil.so" not found

init {
    try{
        System.loadLibrary("avutil")
        System.loadLibrary("avcodec")
        System.loadLibrary("avformat")
        System.loadLibrary("swscale")
        System.loadLibrary("avfilter")
    }
    catch (e:Exception){
        Log.i("error","${e.message}")
    }
}

In app/build.gradle

ndk {
    abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
}

Upvotes: 2

Views: 255

Answers (0)

Related Questions