当我将新实现添加到我的gradle文件(implementation "com.tonyodev.fetch2:fetch2:2.0.0-RC10"
)时,我收到以下错误:
Error:Error converting bytecode to dex:
Cause: com.android.dex.DexException: Multiple dex files define Landroid/support/design/widget/StateListAnimator;
Error:com.android.dex.DexException: Multiple dex files define Landroid/support/design/widget/StateListAnimator;
我尝试通过将实现更改为此来排除支持库,但没有成功:
implementation ("com.tonyodev.fetch2:fetch2:2.0.0-RC10") {
exclude group: 'com.android.support'
}
有没有办法在这个实现上排除支持库,所以我不会得到错误?