File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.3.1 - Jan 12, 2022
2
+
3
+ - Update ` DefaultViewBindingDialogFragment ` 's implementation.
4
+ - Remove ` @PublishedApi ` on ` GetInflateMethod ` .
5
+ - The message of thrown exceptions is more friendly.
6
+ - Fix a ` NullPointerException ` when ` binding ` is ` null ` and ` onDestroyView ` is not ` null ` .
7
+ - Refactor implementations: replace ` anonymous functions ` by ` SAM conversions ` .
8
+
1
9
## 1.3.0 - Dec 24, 2021
2
10
3
11
- Change ` targetSdkVersion ` and ` compileSdkVersion ` to 31.
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ allprojects {
54
54
55
55
``` kotlin
56
56
dependencies {
57
- implementation(" com.github.hoc081098:ViewBindingDelegate:1.3.0 " )
57
+ implementation(" com.github.hoc081098:ViewBindingDelegate:1.3.1 " )
58
58
}
59
59
```
60
60
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ android {
11
11
applicationId " com.hoc081098.example"
12
12
minSdkVersion 14
13
13
targetSdkVersion 31
14
- versionCode (1 * 10_000 + 3 * 100 + 0 )
15
- versionName " 1.3.0 "
14
+ versionCode (1 * 10_000 + 3 * 100 + 1 )
15
+ versionName " 1.3.1 "
16
16
17
17
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
18
18
}
You can’t perform that action at this time.
0 commit comments