appcompat-v7:27.1.1与firebase-ads的冲突:15.0.1

时间:2018-05-31 13:21:28

标签: android firebase android-studio implementation

我正在开发一款新应用。目前我正在尝试添加依赖

implementation 'com.google.firebase:firebase-ads:15.0.1'

之前插入第38行:

enter image description here

后插入第38行:

enter image description here

如何最好地解决此问题?

P.S。 classpath'com.google.gms:google-services:4.0.1'

2 个答案:

答案 0 :(得分:12)

您的一个依赖项是内部使用较旧的支持库版本。最好的解决方案是强制它使用更新的解决方案,只需将其添加到依赖项:

implementation 'com.android.support:customtabs:27.1.1'

答案 1 :(得分:5)

您应该可以通过添加:

来解决此问题

implementation 'com.android.support:customtabs:27.1.1'

您收到此错误,因为您添加的库已在内部实施旧版本。

有类似的讨论here