错误:任务“:app:processDebugResources”执行失败。>com.android.ide.common.Process.processException:org.gradle.Process.internal.execexception:Process“command”e:\program files\android\sdk\build-tools\22.0.1\aapt.exe“已完成,退出值为非零1
这是我的建筑Gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
applicationId "com.example.android.helloworld"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
} dependencies {}
现在该怎么做才能运行我的程序没有错误,请帮帮我........
主题“theme.AppCompat.Light.DarkActionBar”在模块“com.android.support:AppCompat-V7”中声明
所以你的房子里需要这样的东西。
dependencies {
compile 'com.android.support:appcompat-v7:22.1.1'
}
或者,您可以使用“theme.holo.light.darkActionBar”代替,这是较新的android版本的一部分,不需要额外的模块。
如果我完成了定级,我会得到这个错误: 下面是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版。 还有其他方法可以消除这个错误吗