File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 27
27
with :
28
28
java-version : 1.8
29
29
- name : Install Android SDK
30
- uses : malinskiy/action-android/install-sdk@release/0.0.5
30
+ uses : malinskiy/action-android/install-sdk@release/0.1.2
31
31
- name : Run unit tests
32
32
run : ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
33
33
- name : Assemble library
Original file line number Diff line number Diff line change 21
21
with :
22
22
java-version : 1.8
23
23
- name : Install Android SDK
24
- uses : malinskiy/action-android/install-sdk@release/0.0.5
24
+ uses : malinskiy/action-android/install-sdk@release/0.1.2
25
25
- name : Run unit tests
26
26
run : ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
27
27
- name : Assemble library
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.2.2
4
+
5
+ - Fixed IllegalArgumentException being incorrectly thrown in ` GravitySnapRecyclerView ` when Gravity.CENTER is used.
6
+
3
7
## 2.2.1
4
8
5
9
- Fixed ` GravitySnapHelper ` not dispatching snap events for edge items sometimes on ` SnapListener `
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ A SnapHelper that snaps a RecyclerView to an edge.
7
7
Add this to your build.gradle:
8
8
9
9
``` groovy
10
- implementation 'com.github.rubensousa:gravitysnaphelper:2.2.1 '
10
+ implementation 'com.github.rubensousa:gravitysnaphelper:2.2.2 '
11
11
```
12
12
13
13
## How to use
Original file line number Diff line number Diff line change 13
13
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
14
14
# org.gradle.parallel=true
15
15
LIBRARY_GROUP =com.github.rubensousa
16
- LIBRARY_VERSION =2.2.1
16
+ LIBRARY_VERSION =2.2.2
17
17
LIBRARY_ARTIFACT =gravitysnaphelper
18
18
POM_NAME =GravitySnapHelper
19
19
POM_DESCRIPTION =A SnapHelper that snaps the RecyclerView to an edge
You can’t perform that action at this time.
0 commit comments