我现在已经有两天这个错误并且一直在撞墙: -
错误:任务':app:processDebugResources'的执行失败。 com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:处理'命令'C:\ Users \ DEL \ AppData \ Local \ Android \ Sdk \ build-tools \ 19.1.0 \ aapt .exe''以非零退出值1结束
我已经更新了所有“可更新”但这仍然困扰着我。我已经更新到Android 2.1.2并且我在Windows 7中。我正在尝试用片段构建一个空白活动而我没有编写任何代码然而,该项目不会建立
这是android清单文件: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.del.sunshine_testapp_vr1">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.example.del.sunshine_testapp_vr1"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0-beta1'
compile 'com.android.support:design:24.0.0-beta1'
}
任何帮助将不胜感激。
答案 0 :(得分:1)
您的build.gradle
文件显示buildToolsVersion "19.1.0"
且已过时。您应该将其更改为您的sdk中的最新版buildToolVersion
。所以,现在转到 C:\ Users \ DEL \ AppData \ Local \ Android \ Sdk \ build-tools \ 目录,然后在build.gradle
文件中找到最新版本的构建工具将buildToolsVersion "19.1.0"
更改为该版本。现在选择Tools -> Android -> Sync with Gradle dependency
。希望这对你有所帮助。
答案 1 :(得分:1)
删除compile 'com.android.support:appcompat-v7:24.0.0-beta1'
appcompat-v7:24.0.0-beta1
没有合作
buildToolsVersion "19.1.0"
答案 2 :(得分:0)
当我尝试运行Flutter应用程序时,它也引发了错误。因此,我认为Shashanth的答案是正确的,最终我添加了一个具有较新版本(Android API 28)的虚拟设备,并编辑build.gradle以使其与我刚安装的版本(28)相匹配,特技。我不确定它是否100%正确,因为您需要在运行该应用程序的每台计算机上向该API添加支持,但至少可以解决该问题。