android-support-v4.jar中的意外顶级异常

当我想编译我的应用程序时,我有一个问题:

UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added`

这似乎是android-support-v4.jar的错误.

在我的项目中,我有3个库:appcompat,facebook,google_play_services.

我的毕业文件

> AppProject / settings.gradle

include ':libraries:google_play_services',':libraries:appcompat',':libraries:facebook',':app'

> AppProject / build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}

> AppProject / app / build.gradle:

apply plugin: 'android'

dependencies {
    compile project(':libraries:appcompat')
    compile project(':libraries:facebook')
    compile project(':libraries:google_play_services')
    compile files('libs/android-async-http-1.4.3.jar')
    compile files('libs/gson-2.2.4.jar')
    compile files('libs/libGoogleAnalyticsV2.jar')
    compile files('libs/universal-image-loader-1.8.4.jar')
    compile files('libs/urbanairship-lib-3.0.0.jar')
}

> AppProject / libraries / appcompat / build.gradle:

apply plugin: 'android-library'

dependencies {
    compile files('libs/android-support-v4.jar')
    compile files('libs/android-support-v7-appcompat.jar')
}

> AppProject / libraries / facebook / buidle.gradle:

apply plugin: 'android-library'

dependencies {
    compile files('libs/android-support-v4.jar')
}

> AppProject / libraries / google_play_services / buidle.gradle:

apply plugin: 'android-library'

dependencies {
    compile files('libs/google-play-services.jar')
}

但是当我编译它时,会出现这个错误

Output:
        UNEXPECTED TOP-LEVEL EXCEPTION:
        java.lang.IllegalArgumentException: already added: Landroid/support/v4/app/NotificationCompatIceCreamSandwich;

你可以帮我吗?

解决方法

我发现问题:

AppProject / settings.gradle

include ':libraries:facebook',':app'

AppProject /库/ Facebook的/的build.gradle

apply plugin: 'android-library'

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
}

AppProject /应用/的build.gradle

apply plugin: 'android'

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.android.support:appcompat-v7:18.0.+'
    compile 'com.google.android.gms:play-services:3.1.36'

    compile project(':libraries:facebook')
    compile files('libs/android-async-http-1.4.3.jar')
    compile files('libs/gson-2.2.4.jar')
    compile files('libs/libGoogleAnalyticsV2.jar')
    compile files('libs/universal-image-loader-1.8.4.jar')
    compile files('libs/urbanairship-lib-3.0.0.jar')
}

相关文章

这篇“android轻量级无侵入式管理数据库自动升级组件怎么实现...
今天小编给大家分享一下Android实现自定义圆形进度条的常用方...
这篇文章主要讲解了“Android如何解决字符对齐问题”,文中的...
这篇文章主要介绍“Android岛屿数量算法怎么使用”的相关知识...
本篇内容主要讲解“Android如何开发MQTT协议的模型及通信”,...
本文小编为大家详细介绍“Android数据压缩的方法是什么”,内...