Skip to content

Commit

Permalink
Version upgrade to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
senneco committed Oct 17, 2016
1 parent c17daba commit d166d8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,29 +85,29 @@ Base modules integration:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy:1.0.2'
provided 'com.arello-mobile:moxy-compiler:1.0.2'
compile 'com.arello-mobile:moxy:1.0.3'
provided 'com.arello-mobile:moxy-compiler:1.0.3'
}
```
If you want to see generated code, use `apt` instead of `provided` dependency type:
```groovy
dependencies {
...
apt 'com.arello-mobile:moxy-compiler:1.0.2'
apt 'com.arello-mobile:moxy-compiler:1.0.3'
}
```
For additional base view classes `MvpActivity` and `MvpFragment` add this:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy-android:1.0.2'
compile 'com.arello-mobile:moxy-android:1.0.3'
}
```
If you planing to use AppCompat, then you can use `MvpAppCompatActivity` and `MvpAppCompatFragment`. Then add this:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy-app-compat:1.0.2'
compile 'com.arello-mobile:moxy-app-compat:1.0.3'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ allprojects {
}

ext {
targetVersionCode = 23
targetVersionName = "1.0.2"
targetVersionCode = 24
targetVersionName = "1.0.3"
}

task clean(type: Delete) {
Expand Down

0 comments on commit d166d8e

Please sign in to comment.