support4更新28.0.0-alpha1后cordova build时报错的解决方案

时间:2021-03-22 16:52:34

在昨天(2018/03/09)下午,cordova build android的时候,更新了support4的28.0.0-alpha1,如下图。

support4更新28.0.0-alpha1后cordova build时报错的解决方案

之后就一直在build的时候报错

In <declare-styleable> FontFamilyFont, unable to find attribute android:fontVariationSettings

ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:ttcIndex


support4更新28.0.0-alpha1后cordova build时报错的解决方案


目前临时的解决办法:把下面这段代码加到/platform/android/build.gradle最后

configurations.all {
    resolutionStrategy {
        force 'com.android.support:support-v4:27.1.0'
    }
}

虽然不完美但是解决了。