arcticfox1919 / vlc-flutter

Flutter plugin for vlc player
MIT License
21 stars 7 forks source link

Vlc player crashes on flutter : UnsatisfiedLinkError: dlopen failed: cannot locate symbol "__sfp_handle_exceptions" #374 #7

Open iamsiby opened 1 year ago

iamsiby commented 1 year ago

Can't load vlcjni library: java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "__sfp_handle_exceptions".

arcticfox1919 commented 1 year ago

Perhaps try adding the following configuration to android/app/build.gradle:

android {
    packagingOptions {
        pickFirst 'lib/**/libc++_shared.so'
    }
}