gpt4 book ai didi

android - 如何查找问题 Android SDK 3.0 错误 :(9, 5) 错误:找不到资源 android:attr/colorError

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:10 26 4
gpt4 key购买 nike

当我执行 make 时如何找到此错误的问题我收到此错误消息:错误:(9, 5) 错误:找不到资源 android:attr/colorError

奇怪的是我有 2 个 build.gradle 文件:这是我的 build.gradle (Project:Projectname) 文件:

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

这是我的 build.gradle (Module:app) 文件:

apply plugin: 'com.android.application'
android {
compileSdkVersion 22
defaultConfig {
applicationId "org.acme.nfcedit"
minSdkVersion 22
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

这个文件出现/home/users/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/c41e5bc4d98504dc222d4eca88ab6d1b/res/values-v26/values-v26.xml内容

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Base.Theme.AppCompat" parent="Base.V26.Theme.AppCompat"/>
<style name="Base.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light"/>
<style name="Base.V26.Theme.AppCompat" parent="Base.V26.Theme.AppCompat">
<!-- We can use the platform styles on API 26+ -->
<item name="colorError">?android:attr/colorError</item>
</style>
<style name="Base.V26.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light">
<!-- We can use the platform styles on API 26+ -->
<item name="colorError">?android:attr/colorError</item>
</style>
<style name="Base.V26.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar">
<item name="android:touchscreenBlocksFocus">true</item>
<item name="android:keyboardNavigationCluster">true</item>
</style>
<style name="Base.Widget.AppCompat.Toolbar" parent="Base.V26.Widget.AppCompat.Toolbar"/>
</resources>

我不知道是什么意思 ?android:attr/colorError

谢谢

最佳答案

API 26 及更高版本的 appcompat 库引用名为“android:attr/colorError”的属性。但是构建是使用 sdk 版本 22 编译的。

因此,在您的应用程序模块的 build.gradle 中,将您的 compileSdkVersion 增加到 26 以使其与您正在使用的 appcompat 库的版本一致。

换句话说,现在,您有:

compileSdkVersion 22
implementation 'com.android.support:appcompat-v7:26.1.0'

但是,这两个版本应该是一致的。所以,看看会发生什么:

compileSdkVersion 26
implementation 'com.android.support:appcompat-v7:26.1.0'

关于android - 如何查找问题 Android SDK 3.0 错误 :(9, 5) 错误:找不到资源 android:attr/colorError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47081732/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com