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+
19## 1.3.0 - Dec 24, 2021
210
311- Change ` targetSdkVersion ` and ` compileSdkVersion ` to 31.
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ allprojects {
5454
5555``` kotlin
5656dependencies {
57- implementation(" com.github.hoc081098:ViewBindingDelegate:1.3.0 " )
57+ implementation(" com.github.hoc081098:ViewBindingDelegate:1.3.1 " )
5858}
5959```
6060
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ android {
1111 applicationId " com.hoc081098.example"
1212 minSdkVersion 14
1313 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 "
1616
1717 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1818 }
You can’t perform that action at this time.
0 commit comments