如果我完成了定级,我会得到这个错误:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/>
<style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/>
<style name="TextAppearance.AppCompat.Notification.Info.Media"/>
<style name="TextAppearance.AppCompat.Notification.Media"/>
<style name="TextAppearance.AppCompat.Notification.Time.Media"/>
<style name="TextAppearance.AppCompat.Notification.Title.Media"/>
</resources>
下面是by build.gradle文件的样子:
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.test.test"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
configurations {
all*.exclude group: 'org.bytedeco', module: 'javacpp-presets'
}
packagingOptions {
exclude 'META-INF/maven/org.bytedeco.javacpp-presets/ffmpeg/pom.properties'
exclude 'META-INF/maven/org.bytedeco.javacpp-presets/ffmpeg/pom.xml'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
apt 'com.jakewharton:butterknife-compiler:8.0.1'
provided 'javax.annotation:jsr250-api:1.0'
apt 'com.github.hotchemi:permissionsdispatcher-processor:2.0.7'
compile 'com.jakewharton:butterknife:8.0.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.github.hotchemi:permissionsdispatcher:2.0.7'
compile files('libs/ffmpeg.jar')
compile files('libs/javacpp.jar')
compile files('libs/javacv.jar')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-moshi:2.3.0'
compile 'com.android.support:design:25.4.0'
compile 'com.jakewharton:butterknife:8.6.0'
compile 'com.basgeekball:awesome-validation:2.0'
compile 'com.facebook.stetho:stetho:1.5.0'
compile 'com.facebook.stetho:stetho-okhttp3:1.5.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
}
不要
compileSdkVersion 23
buildToolsVersion '25.0.0'
做
compileSdkVersion 25
buildToolsVersion "25.0.2"
我在styles.xml中发现了这个错误: 错误:检索项的父项时出错:找不到与给定名称“theme.appcompat.light”匹配的资源。 然后右击项目->Properties->Android 我确信我已经在构建工具、平台工具、附加工具等方面更新了我的sdk到最新的21版。我不知道为什么这个错误仍然发生。我尝试重新启动我的eclipse并清理项目,但它仍然发生。
*每次尝试构建时,我都会显示此错误:*
http://code.google.com/p/android-apktool/wiki/commonerrors#error_retrieving_parent_for_item:_no_resource_found_that_matches styles.xml:101:错误:检索项的父项时出错:找不到与给定名称“widget.appcompat.base”匹配的资源。 styles.xml
编译sdk版本为22,构建工具版本为23.0.2。 推送通知库-https://github.com/facebook/fbnotifications 我知道如果我将编译sdk版本更改为23,这个错误就会消失。但是在我的项目中,我使用了一些在23版上不推荐的方法,目前不可能将compile sdk版本更改为23版。 还有其他方法可以消除这个错误吗
错误:找不到与给定名称匹配的资源:attr“List ViewStyle” 我已经试过这里的一切了。什么都不起作用。 而且values/styles.xml中还有一个错误:“错误:检索项的父项时出错:找不到与给定名称'@android:style/theme.holo.light.noActionBar'匹配的资源。”在以下几行中