Volley和support-v4 lib冲突

时间:2015-10-04 14:18:45

标签: android-support-library android-volley

我正在使用Volley和支持-v4:22,但它们之间存在冲突。我读到他们都有一些常见的文件,这就是为什么我有问题,但我找不到好的解决方案:/

:app:preDebugBuild UP-TO-DATE
:app:preBuild UP-TO-DATE
Information:Gradle tasks [:app:assembleDebug]

我的傻瓜:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

defaultConfig {
    applicationId "pl.bartos.task"
    minSdkVersion 15
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile 'com.android.support:support-v4:22.2.0'
    compile 'com.j256.ormlite:ormlite-core:4.48'
    compile 'com.j256.ormlite:ormlite-android:4.48'
    compile 'com.mcxiaoke.volley:library:1.0.19'
}

0 个答案:

没有答案