我在我的项目中遇到此问题,并且我已在此帖子中尝试了解决方案: Post 1 Post 2,但对我不起作用。该项目在1.2版本的Android Studio上完美运行,当我升级到1.3版本时问题就出现了。
这是我的build.gradle文件
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6'
}
}
repositories {
mavenCentral()
mavenLocal()
}
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
applicationId "br.appname"
minSdkVersion 11
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
}
apt {
arguments {
resourcePackageName android.defaultConfig.applicationId
androidManifestFile variant.outputs[0].processResources.manifestFile
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
apt "org.androidannotations:androidannotations:3.3.2"
compile 'org.androidannotations:androidannotations-api:3.3.2'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.google.android:support-v4:r7'
compile 'com.loopj.android:android-async-http:1.4.8'
compile 'commons-lang:commons-lang:2.6'
compile 'com.crittercism:crittercism-android-agent:5.2.0'
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile files('libs/android-smart-image-view-1.0.0.jar')
compile files('libs/libGoogleAnalyticsServices.jar')
compile 'com.android.support:support-v4:21.0.0'
compile "com.android.support:appcompat-v7:21.0.0"
}
完整的错误是这样的:
错误:任务':appName:processDebugResources'执行失败。 com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException:进程'命令 ' /home/user/Android/Sdk/build-tools/22.0.1/aapt''完成了 非零退出值1
在gradle控制台中我有这样的错误:
:APPNAME:processDebugResources
AGPBI: {"那种":"简单""文本":" /家庭/用户/桌面/项目/ UMobile /主干/ uniforMobile /编译/中间体/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png: 错误:重复文件。","来源":[{}]}
AGPBI: {"那种":"简单""文本":" /家庭/用户/桌面/项目/ UMobile /主干/ uniforMobile /编译/中间体/res/merged/debug/mipmap-xhdpi/ic_launcher.png: 原来就在这里。版本限定符可能是 暗示""来源":[{}]}
我该如何解决这个问题?
答案 0 :(得分:1)
解决了问题!
我刚刚在末尾用-v4重命名了mipmap文件夹。
答案 1 :(得分:0)
这已经晚了但是对于我的情况我已经删除了一张仍在使用的图片。重新添加它并刷新gradle后全部工作