multiple dex files define landroid/support/annotation/AnimRes

前端 未结 18 1053
太阳男子
太阳男子 2020-11-28 08:00

The moment I added the android support annotations to my dependencies

compile \'com.android.support:support-annotations:20.0.0\'

I got this erro

18条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 08:34

    If this is cordova / ionic project this worked for me

    add these line to build.gradle under platforms/android after line number 22 i.e after apply plugin: 'android'

    configurations {
       all*.exclude group: 'com.android.support', module: 'support-v4'
    }
    

提交回复
热议问题