Skip to content

Commit 7a9618c

Browse files
committed
Merge branch 'release/1.5.3'
2 parents 5167d89 + 2c41ec6 commit 7a9618c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,22 +76,22 @@ Base modules integration:
7676
```groovy
7777
dependencies {
7878
...
79-
compile 'com.arello-mobile:moxy:1.5.2'
80-
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2'
79+
compile 'com.arello-mobile:moxy:1.5.3'
80+
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
8181
}
8282
```
8383
For additional base view classes `MvpActivity` and `MvpFragment` add this:
8484
```groovy
8585
dependencies {
8686
...
87-
compile 'com.arello-mobile:moxy-android:1.5.2'
87+
compile 'com.arello-mobile:moxy-android:1.5.3'
8888
}
8989
```
9090
If you are planing to use AppCompat, then you can use `MvpAppCompatActivity` and `MvpAppCompatFragment`. Then add this:
9191
```groovy
9292
dependencies {
9393
...
94-
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
94+
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
9595
compile 'com.android.support:appcompat-v7:$support_version'
9696
}
9797
```
@@ -100,7 +100,7 @@ If you are using kotlin, use `kapt` instead of `provided`/`apt` dependency type
100100
```groovy
101101
dependencies {
102102
...
103-
kapt 'com.arello-mobile:moxy-compiler:1.5.2'
103+
kapt 'com.arello-mobile:moxy-compiler:1.5.3'
104104
}
105105
kapt {
106106
generateStubs = true

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ allprojects {
1919
}
2020

2121
ext {
22-
targetVersionCode = 42
23-
targetVersionName = "1.5.2"
22+
targetVersionCode = 43
23+
targetVersionName = "1.5.3"
2424
}
2525

2626
task clean(type: Delete) {

sample-github/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dependencies {
6868
testCompile "org.hamcrest:hamcrest-all:1.3"
6969
testCompile "org.robolectric:robolectric:3.1-rc1"
7070

71-
compile 'com.arello-mobile:moxy:1.5.2'
72-
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
73-
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2'
71+
compile 'com.arello-mobile:moxy:1.5.3'
72+
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
73+
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
7474
}

sample-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ android {
4040
dependencies {
4141
compile 'com.android.support:appcompat-v7:25.0.0'
4242

43-
compile 'com.arello-mobile:moxy:1.5.2'
44-
compile 'com.arello-mobile:moxy-app-compat:1.5.2'
45-
kapt 'com.arello-mobile:moxy-compiler:1.5.2'
43+
compile 'com.arello-mobile:moxy:1.5.3'
44+
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
45+
kapt 'com.arello-mobile:moxy-compiler:1.5.3'
4646

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

0 commit comments

Comments
 (0)