Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ The minimum API level supported by this library is API 9.

```gradle
dependencies {
compile 'com.github.devahamed:multi-view-adapter:1.2.0'
compile 'com.github.devahamed:multi-view-adapter:1.2.1'

// If you want to use data binding
compile 'com.github.devahamed:multi-view-adapter-databinding:1.2.0'
compile 'com.github.devahamed:multi-view-adapter-databinding:1.2.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions multi-view-adapter-databinding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.2.0"
versionName "1.2.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand All @@ -60,7 +60,7 @@ publish {
userOrg = 'devahamed'
groupId = 'com.github.devahamed'
artifactId = 'multi-view-adapter-databinding'
publishVersion = '1.2.0'
publishVersion = '1.2.1'
repoName = 'MultiViewAdapter'
desc = 'Additional DataBinding support for MultiViewAdapter'
website = 'https://github.com/DevAhamed/MultiViewAdapter'
Expand Down
4 changes: 2 additions & 2 deletions multi-view-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ android {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.2.0"
versionName "1.2.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -93,7 +93,7 @@ publish {
groupId = 'com.github.devahamed'
artifactId = 'multi-view-adapter'
repoName = 'MultiViewAdapter'
publishVersion = '1.2.0'
publishVersion = '1.2.1'
desc = 'Recyclerview Adapter library to create composable view holders'
website = 'https://github.com/DevAhamed/MultiViewAdapter'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ public final void setData(List<M> dataList) {
*
* @param itemBinder ItemBinder for the header
* @param header Header to be added
* @param <H> Model class of header
* @param <VH> ViewHolder for header
*/
public final <H, VH extends BaseViewHolder<H>> void addHeader(ItemBinder<H, VH> itemBinder,
H header) {
Expand All @@ -69,6 +71,8 @@ public final <H, VH extends BaseViewHolder<H>> void addHeader(ItemBinder<H, VH>
*
* @param itemBinder ItemBinder for the footer
* @param footer Footer to be added
* @param <F> Model class of footer
* @param <VH> ViewHolder for footer
*/
public final <F, VH extends BaseViewHolder<F>> void addFooter(ItemBinder<F, VH> itemBinder,
F footer) {
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.2.0"
versionName "1.2.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down