myinnos / AlphabetIndex-Fast-Scroll-RecyclerView

A Powerful AlphabetIndex FastScroller Library for Android's RecyclerView!
https://myinnos.github.io/AlphabetIndex-Fast-Scroll-RecyclerView/
Apache License 2.0
603 stars 114 forks source link

Downloading #1

Closed jakepurple13 closed 7 years ago

jakepurple13 commented 7 years ago

When I was putting the line compile 'com.github.myinnos:AlphabetIndex-Fast-Scroll-RecyclerView:1.0' into the gradle, Android Studio was yelling at me Error:(44, 13) Failed to resolve: com.github.myinnos:AlphabetIndex-Fast-Scroll-RecyclerView:1.0

myinnos commented 7 years ago

Make sure add maven to repositories

In build.gradle (Project)

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

And then in the other gradle file(may be your app gradle or your own module library gradle, but never add in both of them to avoid conflict.)

dependencies {
        compile 'com.github.myinnos:AlphabetIndex-Fast-Scroll-RecyclerView:1.0'
        }
jakepurple13 commented 7 years ago

Well don't I feel stupid now. It worked right away. Thanks!