lsjwzh / RecyclerViewPager

Deprecated
Apache License 2.0
3.53k stars 667 forks source link

i can't resolve implementation 'com.github.lsjwzh.RecyclerViewPager:lib:v1.2.0@aar' #221

Open rupesh0895 opened 5 years ago

rupesh0895 commented 5 years ago

Failed to resolve: com.github.lsjwzh.RecyclerViewPager:lib:v1.2.0

luccasMelo commented 5 years ago

Try to implement the v1.1.2

wqjuser commented 5 years ago

me too

luccasMelo commented 5 years ago

I found a solution use a SnapHelper and attach to your recyclerView, without this library. Like this:

import android.support.v7.widget.SnapHelper;

...

  final SnapHelper snapHelper = new LinearSnapHelper();
        snapHelper.attachToRecyclerView(this.recyclerView);
mcauto commented 5 years ago

Try to implement the v1.1.2

It's work for me

Thank you :)

woxiangxin7779 commented 5 years ago

@lsjwzh can't resolve implementation 'com.github.lsjwzh.RecyclerViewPager:lib:v1.2.0@aar' 也不维护啊 ? 挂了

peterzoosk commented 5 years ago

https://jitpack.io/#lsjwzh/RecyclerViewPager this version didn't build on jitpack

rkmax commented 4 years ago

It's also happening with the version 1.1.2. anyone have some workaround?

yashzanwar commented 4 years ago

Any workaround on this?

mome13 commented 4 years ago

It's also happening with the version 1.1.2. Does anyone have some workaround?

try to implement 1.1.1 like below code : implementation 'com.github.lsjwzh.RecyclerViewPager:lib:v1.1.1'

abora97 commented 4 years ago

I have the same issue Failed to resolve: com.github.lsjwzh:RecyclerViewPager:1.2.0

y13chandan commented 4 years ago

It's also happening with the version 1.1.2. Does anyone have some workaround?

try to implement 1.1.1 like below code : implementation 'com.github.lsjwzh.RecyclerViewPager:lib:v1.1.1'

Thanks, its working for me.