android studio不同步任何github库

时间:2016-02-28 14:59:15

标签: android android-studio

过去3天我无法在github中使用任何库,我曾经与大多数人一起工作,但现在它根本不起作用。

它需要大约5分钟,然后我收到这样的消息:

 Error:(30, 13) Failed to resolve: jp.wasabeef:recyclerview-animators:1.3.0
<a href="openFile:F:/AndroidStudioProjects/selfi_ramezani/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

这是我的傻瓜:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.xx.xx"
        minSdkVersion 11
        targetSdkVersion 21
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile files('libs/acra-4.5.0.jar')
    compile files('libs/universal-image-loader-1.8.4-with-sources.jar')
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.android.support:cardview-v7:23.0.0'
    compile 'com.android.support:recyclerview-v7:23.0.0'
    compile files('libs/org.apache.http.legacy.jar')
    compile 'com.soundcloud.android:android-crop:1.0.1@aar'
    compile 'jp.wasabeef:recyclerview-animators:1.2.2'
    compile 'com.android.support:design:23.0.0'
    compile 'jp.wasabeef:recyclerview-animators:1.3.0'
}

如何解决这个烦恼的问题?

1 个答案:

答案 0 :(得分:0)

我认为因为您使用的是同一个库的2个版本。使用其中一个,然后构建项目。

compile 'jp.wasabeef:recyclerview-animators:1.2.2'

 compile 'jp.wasabeef:recyclerview-animators:1.3.0'

如果您使用的是RecyclerView 23.0.1或更低版本。 (作为这个lib文档)

dependencies {
compile 'jp.wasabeef:recyclerview-animators:1.3.0'
}

希望这会对你有所帮助。感谢...