Skip to content

Commit

Permalink
Releasing 4.3.0 containing ViewBinding support
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Mar 9, 2020
1 parent 1f2ba5f commit c177cb8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ There are 2 artifacts for kotlin users that allow you to write Adapter Delegates
## Dependencies

```
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.2.0'
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.0'
// If you use Kotlin Android Extensions and synthetic properties (alternative to findViewById())
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.2.0'
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-layoutcontainer:4.3.0'
// If you use ViewBinding
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.2.0'
implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.0'
```

## How to use it
Expand Down Expand Up @@ -140,7 +140,7 @@ fun catAdapterDelegate() = adapterDelegate<Cat, Animal> {
This library is available on maven central:

```groovy
implementation 'com.hannesdorfmann:adapterdelegates4:4.2.0'
implementation 'com.hannesdorfmann:adapterdelegates4:4.3.0'
```
[![Build Status](https://travis-ci.org/sockeqwe/AdapterDelegates.svg?branch=master)](https://travis-ci.org/sockeqwe/AdapterDelegates)

Expand Down Expand Up @@ -339,7 +339,7 @@ public class DiffAdapter extends AsyncListDifferDelegationAdapter<Animal> {
There is an additional artifact for the pagination library:

```gradle
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.2.0'
implementation 'com.hannesdorfmann:adapterdelegates4-pagination:4.3.0'
```

Use `PagedListDelegationAdapter`.
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=4.2.2-SNAPSHOT
VERSION_CODE=422-SNAPSHOT
VERSION_NAME=4.3.1-SNAPSHOT
VERSION_CODE=431-SNAPSHOT
GROUP=com.hannesdorfmann


Expand Down
7 changes: 1 addition & 6 deletions kotlin-dsl-viewbinding/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
POM_NAME = AdapterDelegates-Kotlin-Dsl
POM_ARTIFACT_ID = adapterdelegates4-kotlin-dsl-viewbinding
POM_PACKAGING = aar

# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
POM_PACKAGING = aar

0 comments on commit c177cb8

Please sign in to comment.