Skip to content

Commit

Permalink
doc: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-dhl committed Oct 12, 2022
1 parent 3dc244c commit 25dec5b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,10 @@ Do not want to generate a binding class for a layout, add the following attribut

### change log

**2022-10-07(V1.1.9)**

* Compatible with jdk >= 1.8 version

**2022-7-13(V1.1.7)**

* 兼容不传 ViewGroup 的情况[#34](https://github.com/hi-dhl/Binding/issues/34)
Expand Down
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ plugins {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 32

defaultConfig {
applicationId "com.hi.dhl.demo.binding"
minSdkVersion 24
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -65,7 +64,7 @@ dependencies {
implementation 'androidx.viewpager2:viewpager2:1.0.0-beta02'

if (remote) {
implementation 'com.hi-dhl:binding:1.1.9.5-SNAPSHOT'
implementation 'com.hi-dhl:binding:1.1.9'
} else {
implementation project(':binding')
}
Expand Down
9 changes: 4 additions & 5 deletions binding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ plugins {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 32

defaultConfig {
minSdkVersion 14
targetSdkVersion 30
versionCode 10104
versionName "1.1.5"
targetSdkVersion 32
versionCode 10109
versionName "1.1.9"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 4 additions & 0 deletions doc/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,10 @@ val binding: ActivityDataBindBinding by databind(R.layout.activity_data_bind) {

### 更新记录

**2022-10-07(V1.1.9)**

* 兼容 jdk >= 1.8

**2022-7-13(V1.1.7)**

* 兼容不传 ViewGroup 的情况[#34](https://github.com/hi-dhl/Binding/issues/34)
Expand Down

0 comments on commit 25dec5b

Please sign in to comment.