Aspsine / IRecyclerView

IRecyclerView is a custom RecyclerView that supports pull-to-refresh, pull-to-loadmore, customize refresh header and loadmore footer, add header views and footer views.
729 stars 146 forks source link

为什么android studio 编译不下来 #22

Closed codesdt closed 7 years ago

codesdt commented 7 years ago

Error:(25, 13) Failed to resolve: com.github.Aspsine:IRecyclerView:0.0.5 Show in File
Show in Project Structure dialog

Aspsine commented 7 years ago

Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Step 2. Add the dependency

dependencies {
    compile 'com.github.Aspsine:IRecyclerView:0.0.5'
}