Skip to content

Commit

Permalink
Tagged to v2.3.3 and upgraded support libs to v25
Browse files Browse the repository at this point in the history
  • Loading branch information
drakeet committed Dec 30, 2016
1 parent a06f269 commit 211069c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README-zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GitHub: [https://github.com/drakeet/MultiType](https://github.com/drakeet/MultiT

```groovy
dependencies {
compile 'me.drakeet.multitype:multitype:2.3.0'
compile 'me.drakeet.multitype:multitype:2.3.3'
}
```

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ An Android library to retrofit multiple item view types
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/drakeet/MultiType/blob/master/LICENSE)
![maven-central](https://img.shields.io/maven-central/v/me.drakeet.multitype/multitype.svg)

English Version | <a href="https://drakeet.me/multitype" target="_blank" rel="nofollow">中文版</a> | [《Android 复杂的列表视图新写法 · 详解篇》](https://github.com/drakeet/Effective-MultiType/blob/master/README.md)
English Version | [《Android 复杂的列表视图新写法 · 详解篇》](https://github.com/drakeet/Effective-MultiType/blob/master/README.md)

Previously, when we need to develop a complex RecyclerView/ListView, it is a boring and troublesome work.
We should override the `getItemViewType` of `RecyclerView.Adapter` and add some types,
Expand All @@ -22,7 +22,7 @@ In your `build.gradle`:

```groovy
dependencies {
compile 'me.drakeet.multitype:multitype:2.3.2'
compile 'me.drakeet.multitype:multitype:2.3.3'
}
```

Expand Down
14 changes: 7 additions & 7 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ apply from: './gradle-mvn-push.gradle'
apply plugin: 'jacoco'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 24
versionCode 50
versionName "2.3.2"
targetSdkVersion 25
versionCode 51
versionName "2.3.3"
}
buildTypes {
release {
Expand All @@ -38,6 +38,6 @@ android {

dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:support-annotations:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:support-annotations:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
}
4 changes: 2 additions & 2 deletions library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ POM_NAME=MultiType
POM_ARTIFACT_ID=multitype
POM_PACKAGING=aar

VERSION_NAME=2.3.2
VERSION_CODE=50
VERSION_NAME=2.3.3
VERSION_CODE=51
GROUP=me.drakeet.multitype

POM_DESCRIPTION=An Android library to retrofit multiple item view types
Expand Down
14 changes: 7 additions & 7 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "me.drakeet.multitype.sample"
minSdkVersion 14
targetSdkVersion 24
versionCode 50
versionName "2.3.2"
targetSdkVersion 25
versionCode 51
versionName "2.3.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -41,8 +41,8 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
testCompile 'junit:junit:4.12'
compile 'com.google.code.gson:gson:2.7'
}

0 comments on commit 211069c

Please sign in to comment.