美文网首页
More than one file was found wit

More than one file was found wit

作者: kevinsEegets | 来源:发表于2019-10-25 09:15 被阅读0次

    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

    相关文章

      网友评论

          本文标题:More than one file was found wit

          本文链接:https://www.haomeiwen.com/subject/svnjvctx.html