Skip to content

Commit

Permalink
Updated version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
drakeet committed Aug 11, 2016
1 parent c8adc87 commit 9dc19a0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions 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:1.2-beta1'
compile 'me.drakeet.multitype:multitype:1.2'
}
```

Expand Down Expand Up @@ -94,9 +94,9 @@ public class App extends Application {

@Override public void onCreate() {
super.onCreate();
ItemTypePool.register(TextItemContent.class, new TextItemViewProvider());
ItemTypePool.register(ImageItemContent.class, new ImageItemViewProvider());
ItemTypePool.register(RichItemContent.class, new RichItemViewProvider());
MultiTypePool.register(TextItemContent.class, new TextItemViewProvider());
MultiTypePool.register(ImageItemContent.class, new ImageItemViewProvider());
MultiTypePool.register(RichItemContent.class, new RichItemViewProvider());
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ In your `build.gradle`:

```groovy
dependencies {
compile 'me.drakeet.multitype:multitype:1.2-beta1'
compile 'me.drakeet.multitype:multitype:1.2'
}
```

Expand Down Expand Up @@ -92,9 +92,9 @@ public class App extends Application {

@Override public void onCreate() {
super.onCreate();
ItemTypePool.register(TextItemContent.class, new TextItemViewProvider());
ItemTypePool.register(ImageItemContent.class, new ImageItemViewProvider());
ItemTypePool.register(RichItemContent.class, new RichItemViewProvider());
MultiTypePool.register(TextItemContent.class, new TextItemViewProvider());
MultiTypePool.register(ImageItemContent.class, new ImageItemViewProvider());
MultiTypePool.register(RichItemContent.class, new RichItemViewProvider());
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 24
versionCode 6
versionName "1.2-beta1"
versionCode 7
versionName "1.2"
}
buildTypes {
release {
Expand Down
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=1.2-beta1
VERSION_CODE=6
VERSION_NAME=1.2
VERSION_CODE=7
GROUP=me.drakeet.multitype

POM_DESCRIPTION=An Android library to retrofit multiple item view types
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId "me.drakeet.multitype.sample"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
versionCode 7
versionName "1.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down

0 comments on commit 9dc19a0

Please sign in to comment.