More than one file was found wit

2019-10-25  本文已影响0人  kevinsEegets

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

上一篇下一篇

猜你喜欢

热点阅读