All com.android.support libraries must use the exact same version specification

前端 未结 30 2093
忘掉有多难
忘掉有多难 2020-11-21 05:10

After updating to android studio 2.3 I got this error message. I know it\'s just a hint as the app run normally but it\'s really strange.

All com.andr

30条回答
  •  别那么骄傲
    2020-11-21 05:58

    If the same error is on appcompat

    implementation 'com.android.support:appcompat-v7:27.0.1'
    

    then adding design solved it.

    implementation 'com.android.support:appcompat-v7:27.0.1'
    implementation 'com.android.support:design:27.0.1'
    

    For me, adding

    implementation 'de.mrmaffen:vlc-android-sdk:2.0.6'
    

    was including appcompat-v7:23.1.1 in

    .idea/libraries

    without vlc, appcompat alone is enough.

提交回复
热议问题