error: resource android:attr/fontVariationSettings resource android:attr/ttcIndex not found.

在最外层的build.gradle allprojects{}节点中

加入

//    configurations.all {
//        resolutionStrategy {
//            eachDependency { DependencyResolveDetails details ->
//                if (details.requested.group == 'com.android.support') {
//                    details.useVersion "24.0.0"
//                }
//            }
//        }}

如果有的别的support 包不想改动这个版本号码 也可通过
configurations.all {
resolutionStrategy {
    force 'com.android.support:support-v4:27.1.0'
}}
这个语法改动 如果还是报错 建议用v4:24.0.0


猜你喜欢

转载自blog.csdn.net/mp624183768/article/details/80661801