Why do I get “All com.android.support libraries must use the exact same version specification” in Android Studio 3.2.1?

后端 未结 3 472
走了就别回头了
走了就别回头了 2020-12-21 08:26

I have read the article All com.android.support libraries must use the exact same version specification

But I still get the following information after I add the c

3条回答
  •  孤城傲影
    2020-12-21 09:17

    I think that play-services-ads:17.0.0 include appcompat 26.1.0. Try to exclude it:

    implementation ("com.google.android.gms:play-services-ads:17.0.0") {
        exclude group: "com.android.support"
    }
    

提交回复
热议问题