Program type already present: android.support.v4.media.MediaBrowserCompat$CustomActionCallback

前端 未结 5 1459
死守一世寂寞
死守一世寂寞 2020-12-09 14:43

I completely new to Android Development and can\'t seem to resolve this error: \"Error: Program type already present: android.support.v4.media.MediaBrowserCompat$Custom

5条回答
  •  隐瞒了意图╮
    2020-12-09 15:16

    Some of your existing dependencies are using older versions of support library, try this

    implementation 'androidx.legacy:legacy-support-v4:1.0.0-alpha1' {  
    exclude group: 'com.android.support'  
    exclude module: 'support-v4'
    }
    

提交回复
热议问题