More than one file was found with OS independent path 'lib/armeabi/xxx.so' 解决办法
在你的app的build.gradle下添加如下代码
android {
.
.
.
packagingOptions {
pickFirst 'lib/armeabi/xxx.so'
}
pickFirst
的意思为 if more than one path matches the first-pick, only the first found will be selected
具体详情可以看https://stackoverflow.com/
解释
https://stackoverflow.com/questions/44954122/more-than-one-file-was-found-with-os-independent-path-lib-x86-libusb-so
网友评论