class android support v4 print helper已经添加到输出中

时间:2014-12-07 18:59:32

标签: android gradle android-studio

我刚刚将我的android工作室更新到最新版本的新gradle版本,运行我的应用程序给我一个错误类android支持v4已经添加到输出中不知道出了什么问题我检查是否有是一个重复的jar或重复的库找不到任何东西。这是我的应用程序:build.gradle

enter code here

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion '21.1.1'
lintOptions
        {
            checkReleaseBuilds false
            //abortOnError true
        }
defaultConfig {
    applicationId "package name"
    minSdkVersion 14
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
buildTypes
        {
            release {
                minifyEnabled true
                proguardFile getDefaultProguardFile('proguard-android.txt')
            }
        }
dexOptions {
    preDexLibraries = false
    incremental true
}

 }

 dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 compile project('Libraries:UniversalImageLoader')
 compile project('Libraries:facebook')
 compile project('Libraries:pull-to-refresh')
 compile files('Libraries/gcm.jar')
 compile files('Libraries/quickblox-android-sdk-chat-2.0.jar')
 compile files('Libraries/quickblox-android-sdk-core-2.0.jar')
 compile files('Libraries/quickblox-android-sdk-messages-2.0.jar')
 compile 'com.google.android.gms:play-services:6.1.71'
 compile 'com.google.maps.android:android-maps-utils:0.3'
 compile 'com.squareup.picasso:picasso:2.4.0'
 compile "com.android.support:appcompat-v7:21.0.2"
 }

我接受了这个 编译'com.android.support:support-v4:21.0.2' 我认为它已经包含在appcompat-v7中,但它还没有解决我的问题

1 个答案:

答案 0 :(得分:0)

我将Android Studio版本降级为0.8.6,“Duplicate Copies”错误消失。

这不是一个完美的解决方案,但就目前而言,它是目前唯一的解决方案。