the build exception of duplicate “library_release.kotlin_module“

在引入第三方aar后,可能会报这个错误the build exception of duplicate "library_release.kotlin_module",这是重名导致的,从library库的根本上解决问题,有两种方法:
方法一:

android{
    compileOptions {
    	......
        kotlinOptions.freeCompilerArgs += ['-module-name', "mylibraray"]
    }
}

方法二:

android{
    kotlinOptions {
        freeCompilerArgs += ['-module-name', "mylibraray"]
    }
}

若是library无法修改,则在app库中exclude掉,具体操作没试过。

你可能感兴趣的:(错误,android,kotlin,开发语言,android)