在昨天(2018/03/09)下午,cordova build android的时候,更新了support4的28.0.0-alpha1,如下图。
之后就一直在build的时候报错
In <declare-styleable> FontFamilyFont, unable to find attribute android:fontVariationSettings
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:ttcIndex
目前临时的解决办法:把下面这段代码加到/platform/android/build.gradle最后
configurations.all { resolutionStrategy { force 'com.android.support:support-v4:27.1.0' } }
虽然不完美但是解决了。