Didn't find class "android.support.v4.animation.AnimatorCompatHelper"

来源:互联网 发布:人工智能产业政策 编辑:程序博客网 时间:2024/06/04 18:09

在build.gradle最后添加,代码如下:

configurations.all {    resolutionStrategy.eachDependency { DependencyResolveDetails details ->        def requested = details.requested        if (requested.group == 'com.android.support') {            if (!requested.name.startsWith("multidex")) {                details.useVersion '24.1.1'            }        }    }}

阅读全文
0 0
原创粉丝点击