美文网首页
gradle error

gradle error

作者: zhi5ai | 来源:发表于2018-03-19 14:14 被阅读22次
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:fontVariationSettings
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:ttcIndex


 FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute apt

在build.gradle中添加以下即可

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

或者
linphone-android 内build.gradle的第51行

compile 'com.android.support:support-v4:+'
-->
compile 'com.android.support:support-v4:27.1.0'

参考文章
参考2
参考3

相关文章

网友评论

      本文标题:gradle error

      本文链接:https://www.haomeiwen.com/subject/vtqpqftx.html