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

More than one file was found wit

作者: 搁浅的三刀流zoro | 来源:发表于2020-11-12 11:58 被阅读0次

在接入一个第三方SDK的时候(他们使用androidx),本身项目有support,出现了如题的错误
在build.gradle文件中加入

packagingOptions {
exclude 'META-INF/xxx'
}

依然会提示很多错误,就改成了如下
packagingOptions {
    pickFirst 'META-INF/*'
    pickFirst 'okhttp3/internal/publicsuffix/publicsuffixes.gz'
}

exclude :打包时移除项目中的相关文件,不打入apk文件中
pickFirst : 有多个匹配时只匹配第一个

相关文章

网友评论

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

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