Skip to content

Commit

Permalink
Merge branch 'release/1.5.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
senneco committed May 19, 2017
2 parents 5167d89 + 2c41ec6 commit 7a9618c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,22 @@ Base modules integration:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy:1.5.2'
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2'
compile 'com.arello-mobile:moxy:1.5.3'
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
}
```
For additional base view classes `MvpActivity` and `MvpFragment` add this:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy-android:1.5.2'
compile 'com.arello-mobile:moxy-android:1.5.3'
}
```
If you are planing to use AppCompat, then you can use `MvpAppCompatActivity` and `MvpAppCompatFragment`. Then add this:
```groovy
dependencies {
...
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
compile 'com.android.support:appcompat-v7:$support_version'
}
```
Expand All @@ -100,7 +100,7 @@ If you are using kotlin, use `kapt` instead of `provided`/`apt` dependency type
```groovy
dependencies {
...
kapt 'com.arello-mobile:moxy-compiler:1.5.2'
kapt 'com.arello-mobile:moxy-compiler:1.5.3'
}
kapt {
generateStubs = true
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ allprojects {
}

ext {
targetVersionCode = 42
targetVersionName = "1.5.2"
targetVersionCode = 43
targetVersionName = "1.5.3"
}

task clean(type: Delete) {
Expand Down
6 changes: 3 additions & 3 deletions sample-github/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
testCompile "org.hamcrest:hamcrest-all:1.3"
testCompile "org.robolectric:robolectric:3.1-rc1"

compile 'com.arello-mobile:moxy:1.5.2'
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2'
compile 'com.arello-mobile:moxy:1.5.3'
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
}
6 changes: 3 additions & 3 deletions sample-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ android {
dependencies {
compile 'com.android.support:appcompat-v7:25.0.0'

compile 'com.arello-mobile:moxy:1.5.2'
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
kapt 'com.arello-mobile:moxy-compiler:1.5.2'
compile 'com.arello-mobile:moxy:1.5.3'
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
kapt 'com.arello-mobile:moxy-compiler:1.5.3'

compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

0 comments on commit 7a9618c

Please sign in to comment.