旧项目,有东西需要新增,yarn add 的新内容造成了
No resource found that matches the given name: attr 'android:keyboardNavigationCluster'
解决方式:
compileSdkVersion 26 buildToolsVersion "26.0.2"
dependencies {
compile 'com.android.support:appcompat-v7:26.0.2'
}
这样的错误我遇到挺多次了,大部分的解决方式都是这样,将相关的版本提高。
网友评论