Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\yomal.ds\AppData\Local\Android\android-sdk\build-tools\21.1.2\aapt.exe'' finished with non-zero exit value 1
C:\Users\yomal.ds\AndroidStudio_Workspace\ClaimAssistant\app\build\intermediates\res\merged\debug\values-v23\values-v23.xml
Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(18) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.informaticsint.claimassistant"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/gcm.jar')
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services-identity:8.4.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
}
我尝试创建一个新项目,并将以前的项目源添加到新项目中。但当我将SDK版本设置为22时会弹出此错误。
这是同样的事情发生在我身上,但答案不起作用。检索项的父项时出错:升级到AppCompat v23后,找不到与给定名称匹配的资源
我尝试将支持库的版本从22-22.2.1下调到每一个版本
但当我将项目设置为在SDK23中编译时,它工作得很好,但会导致一些其他问题。这就是我这样做的结果。更新后android studio中出现资源错误:找不到资源
正如我们在注释中所指出的,问题是依赖关系不匹配。
如问题所示,它是针对22 api版本进行编译的。支持库必须与编译的sdk版本相对应,在本例中就是这样。
但是8.4.0 Play Services实际上依赖于23+支持库,由于支持库上有22compileSdk和22+版本,它没有找到资源。
调试版本中不匹配的最简单方法是运行
.gradlew dependencies
在应用程序模块上(不是项目的根),所以终端命令类似于
cd app-folder/
../gradlew dependencies
然后检查依赖关系树,看是否有突出的地方。
如果我完成了定级,我会得到这个错误: 下面是by build.gradle文件的样子:
我在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版。 还有其他方法可以消除这个错误吗
我刚刚创建了一个新的Android项目目标SDK:API14编译:API14主题:None(我一个一个地尝试了它们),然后添加了空白活动,当我点击finish时,它会出现以下两个错误 这个问题以前在stackoverflow上问过,但他们是关于android studio,我不能运行android studio,因为它会减慢系统的速度。我甚至不能启动项目,因为这个错误,请帮助。谢谢你!
错误:找不到与给定名称匹配的资源:attr“List ViewStyle” 我已经试过这里的一切了。什么都不起作用。 而且values/styles.xml中还有一个错误:“错误:检索项的父项时出错:找不到与给定名称'@android:style/theme.holo.light.noActionBar'匹配的资源。”在以下几行中