我的 Android 项目构建失败并且从未执行过该项目?
My Android project Build Failed and never execute the project?
我的问题是,我试图更改我的 android 项目的包名称,当我构建我的项目时它给我错误,然后我按下 ctrl+z 按钮重写我之前的包名并尝试再次构建它它不是构建我的项目。
我的错误是
Error:Execution 任务“:app:processDebugResources”失败。
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\DELL\Documents\adt-bundle-windows-x86-20140702\sdk\build-tools.0.2\aapt.exe'' finished with non-zero exit value 1
首先你会看到屏幕截图
现在你看到我的 build.gradle 文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId "app.tabsample"
minSdkVersion 15
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:23.1.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.google.android.gms:play-services-ads:8.3.0'
}
我有最新的构建版本
classpath 'com.android.tools.build:gradle:1.3.0'
我还尝试清理和重建项目,还尝试重新启动 Android 工作室,但错误没有消失。这是我完整的整个项目。
正如第一个错误中所写,您有一个 space,它在类别标签中是一个无效字符,它应该是 <category android:name=android.intent.category.default/>
。
我的问题是,我试图更改我的 android 项目的包名称,当我构建我的项目时它给我错误,然后我按下 ctrl+z 按钮重写我之前的包名并尝试再次构建它它不是构建我的项目。 我的错误是 Error:Execution 任务“:app:processDebugResources”失败。
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\DELL\Documents\adt-bundle-windows-x86-20140702\sdk\build-tools.0.2\aapt.exe'' finished with non-zero exit value 1
首先你会看到屏幕截图
现在你看到我的 build.gradle 文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId "app.tabsample"
minSdkVersion 15
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:23.1.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.google.android.gms:play-services-ads:8.3.0'
}
我有最新的构建版本
classpath 'com.android.tools.build:gradle:1.3.0'
我还尝试清理和重建项目,还尝试重新启动 Android 工作室,但错误没有消失。这是我完整的整个项目。
正如第一个错误中所写,您有一个 space,它在类别标签中是一个无效字符,它应该是 <category android:name=android.intent.category.default/>
。