天天看點

cordova build android - unable to find attribute android:fontVariationSettings and android

當運作cordova run android 的時候出現如下錯誤

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

解決辦法1:

在build-extras.gradle中添加如下:

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

解決辦法2:

執行以下指令

cordova plugin add cordova-android-support-gradle-release –fetch

安裝插件後再執行cordova run android 即可

參考:https://stackoverflow.com/questions/49162538/running-cordova-build-android-unable-to-find-attribute-androidfontvariation