Android studio 报错 2 files found with path 'META-INF/ "app_release." kotlin_module'.

Updated on with 3,640 views

2 files found with path 'META-INF/ "app_release." kotlin_module'.
这个错误原因是依赖中有多个kotlin的库.

解决方法

1.如果是可以修改依赖的library,那么在library中的build.gradle中的android节点下对module-name重命名即可

android {

    compileOptions {
        kotlinOptions.freeCompilerArgs += ['-module-name', "cn.yanjingtp.utils"]
    }

}

2.如果无法修改library,那么需要在主项目的build.gradle中的android节点下新增过滤即可.

android {

    packagingOptions {
        exclude 'META-INF/*.kotlin_module'
    }

}


标题:Android studio 报错 2 files found with path 'META-INF/ "app_release." kotlin_module'.
作者:yanjing
地址:https://yanjingtp.cn/articles/2022/03/22/1647920083060.html