Skip to content

Commit 040da05

Browse files
committed
[artifact] Prepare version 1.5.6
1 parent e344a0c commit 040da05

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
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.5'
80-
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.5'
79+
compile 'com.arello-mobile:moxy:1.5.6'
80+
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.6'
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.5'
87+
compile 'com.arello-mobile:moxy-android:1.5.6'
8888
}
8989
```
9090
If you are planning 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.5'
94+
compile 'com.arello-mobile:moxy-app-compat:1.5.6'
9595
compile 'com.android.support:appcompat-v7:$support_version'
9696
}
9797
```
@@ -102,7 +102,7 @@ apply plugin: 'kotlin-kapt'
102102
103103
dependencies {
104104
...
105-
kapt 'com.arello-mobile:moxy-compiler:1.5.5'
105+
kapt 'com.arello-mobile:moxy-compiler:1.5.6'
106106
}
107107
```
108108

build.gradle

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

2222
ext {
23-
targetVersionCode = 45
24-
targetVersionName = "1.5.5"
23+
targetVersionCode = 46
24+
targetVersionName = "1.5.6"
2525

2626
deps = [
2727
android : 'com.google.android:android:1.6_r2',

sample-custom-strategy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies {
4444
implementation "com.android.support:appcompat-v7:$supportVersion"
4545
implementation "com.android.support:design:$supportVersion"
4646

47-
def moxyVersion = '1.5.5'
47+
def moxyVersion = '1.5.6'
4848
implementation "com.arello-mobile:moxy:$moxyVersion"
4949
implementation "com.arello-mobile:moxy-app-compat:$moxyVersion"
5050
kapt "com.arello-mobile:moxy-compiler:$moxyVersion"

sample-github/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies {
6565
testImplementation "org.hamcrest:hamcrest-all:1.3"
6666
testImplementation "org.robolectric:robolectric:3.1-rc1"
6767

68-
implementation 'com.arello-mobile:moxy:1.5.5'
69-
implementation 'com.arello-mobile:moxy-app-compat:1.5.5'
70-
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.5'
68+
implementation 'com.arello-mobile:moxy:1.5.6'
69+
implementation 'com.arello-mobile:moxy-app-compat:1.5.6'
70+
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.6'
7171
}

sample-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ android {
4242
dependencies {
4343
implementation 'com.android.support:appcompat-v7:28.0.0'
4444

45-
implementation 'com.arello-mobile:moxy:1.5.5'
46-
implementation 'com.arello-mobile:moxy-app-compat:1.5.5'
47-
kapt 'com.arello-mobile:moxy-compiler:1.5.5'
45+
implementation 'com.arello-mobile:moxy:1.5.6'
46+
implementation 'com.arello-mobile:moxy-app-compat:1.5.6'
47+
kapt 'com.arello-mobile:moxy-compiler:1.5.6'
4848

4949
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
5050
}

0 commit comments

Comments
 (0)