1. 编译时提示:

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

解决:在platforms/android/build.gradle中顶级节点加入:

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

 

相关文章:

  • 2022-01-04
  • 2021-07-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-11-11
猜你喜欢
  • 2022-12-23
  • 2021-09-18
  • 2021-10-28
  • 2022-12-23
  • 2021-11-27
  • 2021-05-25
  • 2021-11-04
相关资源
相似解决方案