当前位置 : 主页 > 手机开发 > android >

为什么我在Android Studio 3.2.1中得到“所有com.android.support库必须使用完全相同的版

来源:互联网 收集:自由互联 发布时间:2021-06-11
我看过文章 All com.android.support libraries must use the exact same version specification 但是在添加代码实现’com.google.android.gms:play-services-ads:17.0.0’之后,我仍然会收到以下信息,为什么? 信息 所有
我看过文章 All com.android.support libraries must use the exact same version specification

但是在添加代码实现’com.google.android.gms:play-services-ads:17.0.0’之后,我仍然会收到以下信息,为什么?

信息

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃).找到的版本28.0.0,26.1.0.示例包括com.android.support:animated-vector-drawable:28.0.0和com.android.support:customtabs:26.1.0 more …(Ctrl F1)

即使我清理项目和重建项目,信息也会保留.

您可以在https://www.dropbox.com/s/zlg731ovf7h3bmi/NewMyApplication.zip?dl=0下载代码

此搜索

enter image description here

镜像2
enter image description here

您的一些或一个库在内部使用旧版本的customtabs,这就是显示此警告消息的原因.如果使用最新版本实现此功能,则警告将消失.

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

添加后,我还为另一个旧版本的依赖项显示了相同的错误.添加后,所有警告都消失了.

implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'

希望这能帮助您解决问题.

你也可以检查一下:https://stackoverflow.com/a/42374426/5167909

网友评论