Skip to content

Commit

Permalink
Merge branch 'release/1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
senneco committed Nov 2, 2016
2 parents 13aec94 + 6c72b6c commit f5ab096
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,29 +81,29 @@ Base modules integration:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy:1.1.1'
provided 'com.arello-mobile:moxy-compiler:1.1.1'
compile 'com.arello-mobile:moxy:1.1.2'
provided 'com.arello-mobile:moxy-compiler:1.1.2'
}
```
If you want to see generated code, use `apt` instead of `provided` dependency type:
```groovy
dependencies {
...
apt 'com.arello-mobile:moxy-compiler:1.1.1'
apt 'com.arello-mobile:moxy-compiler:1.1.2'
}
```
For additional base view classes `MvpActivity` and `MvpFragment` add this:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy-android:1.1.1'
compile 'com.arello-mobile:moxy-android:1.1.2'
}
```
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.1.1'
compile 'com.arello-mobile:moxy-app-compat:1.1.2'
}
```

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 = 26
targetVersionName = "1.1.1"
targetVersionCode = 27
targetVersionName = "1.1.2"
}

task clean(type: Delete) {
Expand Down
4 changes: 2 additions & 2 deletions sample-github/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ dependencies {
provided 'org.glassfish:javax.annotation:10.0-b28'
apt "com.google.dagger:dagger-compiler:2.5"

/*compile 'com.arello-mobile:moxy:1.1.1'
apt 'com.arello-mobile:moxy-compiler:1.1.1'*/
/*compile 'com.arello-mobile:moxy:1.1.2'
apt 'com.arello-mobile:moxy-compiler:1.1.2'*/

compile project(':moxy')
apt project(':moxy-compiler')
Expand Down

0 comments on commit f5ab096

Please sign in to comment.