-2

https://github.com/chrisbanes/Android-PullToRefresh

From this link url I using android studio and i want to import library to my project, other library has dependencies it's easy to use like

dependencies {
    compile 'com.android.xxxxxx
}

But this library has not, How can i import this library to my project Thank you

2 Answers2

0

you don't need that project, get Android support library and try this tutorial:
http://antonioleiva.com/swiperefreshlayout/

Amir
  • 1,250
  • 18
  • 22
0

You can try this:

compile group: 'com.github.chrisbanes.pulltorefresh', name: 'parent', version: '2.1.1'

found here:

https://mvnrepository.com/artifact/com.github.chrisbanes.pulltorefresh/parent/2.1.1

or use this library derived from this one:

https://github.com/naver/android-pull-to-refresh/wiki/Quick-Start-Guide

Petter Friberg
  • 21,252
  • 9
  • 60
  • 109
SWAppDev
  • 248
  • 1
  • 3
  • 13