More than one file was found with OS independent path ‘lib/x86/libusb.so’
I was having this issue in my React-Native Bridge project after I added AAR files of 3rd party SDK. And I was linking the Bridge into my Main React-native application. Solution (May differ for you): Add this in app/build.gradle the Main React-Native application: android { // … packagingOptions { pickFirst ‘**/*.so’ } } Test the … Read more