当前位置: 首页 > 知识库问答 >
问题:

找到多个与操作系统无关的路径为“meta-inf/index.list”的文件

云航
2023-03-14

当我尝试构建我的应用程序时,我面临以下问题:

找到多个与操作系统无关的路径为“meta-inf/index.list”的文件

    packagingOptions {
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE.txt'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/NOTICE.txt'
    exclude 'META-INF/notice.txt'
    exclude 'META-INF/ASL2.0'
}

...问题依然存在

我使用的是Java8和Android Studio的最后一个稳定版本

共有1个答案

呼延德华
2023-03-14

我找到了解决办法。

只需在PackagingOptions上添加以下内容:

packagingOptions {
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE.txt'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/NOTICE.txt'
    exclude 'META-INF/notice.txt'
    exclude 'META-INF/ASL2.0'
    exclude 'META-INF/INDEX.LIST'
}
 类似资料: