已定义资源条目ic_launcher

时间:2014-06-10 11:39:58

标签: android android-gradle

可以任何身体PLZ帮助他解决这个问题我想在我的android工作室项目中使用这个库

https://github.com/daimajia/AndroidImageSlider

当我把它放在我的gradle文件中时它会显示这些错误

Information:Gradle tasks [:app:generateDebugSources]
Information:res\drawable-mdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
Information:res\drawable-mdpi\ic_launcher.png:0: Originally defined here.
Information:res\drawable-xhdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
Information:res\drawable-xhdpi\ic_launcher.png:0: Originally defined here.
Information:res\drawable-xxhdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
Information:res\drawable-xxhdpi\ic_launcher.png:0: Originally defined here.
Information:1 error
Information:0 warnings
Information:See complete output in console
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
    C:\Users\Razi\AppData\Local\Android\android-studio\sdk\build-tools\19.1.0\aapt.exe package -f --no-crunch -I C:\Users\Razi\AppData\Local\Android\android-studio\sdk\platforms\android-19\android.jar -M C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\manifests\debug\AndroidManifest.xml -S C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\res\all\debug -A C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\assets\debug -m -J C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\source\r\debug -F C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\libs\app-debug.ap_ --debug-mode --custom-package com.ua.allahnames.app --output-text-symbols C:\Users\Razi\AndroidStudioProjects\AllahNames\app\build\symbols\debug
Error Code:
    1
Output:
    res\drawable-mdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
    res\drawable-mdpi\ic_launcher.png:0: Originally defined here.
    res\drawable-xhdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
    res\drawable-xhdpi\ic_launcher.png:0: Originally defined here.
    res\drawable-xxhdpi-v4\ic_launcher.png:0: error: Resource entry ic_launcher is already defined.
    res\drawable-xxhdpi\ic_launcher.png:0: Originally defined here.

ic_launcher已经定义了! 可能是什么错误? 我试图将构建工具更改为19.1.0,但我不认为这是一个问题?

这是我的build.gradle代码

dependencies {
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.daimajia.slider:library:1.0.1@aar'
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

3 个答案:

答案 0 :(得分:11)

我是this library的作者。我很抱歉让你陷入这个麻烦。

您可以尝试一种解决方案:

重命名ic_launcher(在您的项目中res/drawable-hdpires/drawable-mdpires/drawable-xhdpires/drawable-xxhdpi)。

只有当两个文件具有相同名称时才会出现此问题。

答案 1 :(得分:0)

您应该清理并重新构建项目。为此,您需要使Android Studio无效,然后重新启动。

检查下图。

enter image description here

答案 2 :(得分:0)

也许文件已被模拟器锁定,请重新启动模拟器和IDE。