我已经在stackoverflow上搜索了很多,但在我的情况下没有单一的解决方案。 我想制作一个从原始源播放音频的简单媒体播放器。我的原始文件夹大小约为2 GB。当我尝试清理并重建我的项目时,它显示错误
消息Gradle Build中的:
Error:Execution failed for task ':app:processDebugResources'.
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\HP\AppData\Local\Android\sdk2\build-tools\23.0.3\aapt.exe'' finished with non-zero exit value 1.
Information:BUILD FAILED
Information:Total time: 1 mins 54.534 secs
Information:1 error
Information:0 warnings
Information:See complete output in console
Gradle Console建议:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.com.android.ide.common.process.ProcessException:
org.gradle.process.internal.ExecException: Process 'command 'C:\Users\HP\AppData\Local\Android\sdk2\build-tools\23.0.3\aapt.exe'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.owais.surah">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="My Book"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity">
</activity>
<activity android:name=".Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我的build.gradle是
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
dexOptions {
incremental = true;
preDexLibraries = false
javaMaxHeapSize "4g"
}
defaultConfig {
applicationId "com.owais.surah"
minSdkVersion 15
targetSdkVersion 23
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:23.2.1'
}
}
答案 0 :(得分:4)
清洁项目将有效。做:
Build -> Clean Project
当您执行粘贴图像或其他资源等复制粘贴工作时,通常会出现此错误。
答案 1 :(得分:0)
Android studio仅接受特定文件名框架内的图片。 它必须只包含[a-z0-9_。] 尝试检查您的drawable
答案 2 :(得分:0)
删除title标题中包含非英文字符的assets文件夹中的所有文件