Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thesurix committed Oct 29, 2017
1 parent 38506a8 commit 17c5e04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To use this library in your android project, just simply add the following depen

```sh
dependencies {
compile 'com.thesurix.gesturerecycler:gesture-recycler:1.4.0'
compile 'com.thesurix.gesturerecycler:gesture-recycler:1.4.1'
}
```

Expand Down Expand Up @@ -55,7 +55,8 @@ GestureManager gestureManager = new GestureManager.Builder(mRecyclerView)
.setManualDragEnabled(true)
// Use custom gesture flags
// Do not use this method if you want predefined flags for RecyclerView layout manager
.setGestureFlags(ItemTouchHelper.LEFT | ItemTouchHelper.RIGHT, ItemTouchHelper.UP | ItemTouchHelper.DOWN)
.setSwipeFlags(ItemTouchHelper.LEFT | ItemTouchHelper.RIGHT)
.setDragFlags(ItemTouchHelper.UP | ItemTouchHelper.DOWN)
.build();
```

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'

def version = '1.4.0'
def version = '1.4.1'

ext {
PUBLISH_GROUP_ID = 'com.thesurix.gesturerecycler'
Expand Down

0 comments on commit 17c5e04

Please sign in to comment.