我需要从我已经在项目中实现的第三方jar文件中排除OkHttp模块。编译后,出现诸如Error: Program type already present: okhttp3.Address
之类的错误。
Jar文件实现为
implementation files ('libs/mosambeelib_v1.0.0.070.jar')
尝试使用以下代码从jar文件中排除该模块,
implementation (files('libs/mosambeelib_v1.0.0.070.jar')){
exclude module : "okhttp"
}
但是由于找不到错误消息而无法找到exclude()。
如何从实现的jar中排除特定模块?