From d3590c2ae8585adfe1baeca7d8c4245be2be011f Mon Sep 17 00:00:00 2001 From: Yuri Shmakov Date: Tue, 10 Jan 2017 16:46:31 +0700 Subject: [PATCH] [artifact] Prepare version 1.4.4 --- README.md | 14 +++++++------- build.gradle | 4 ++-- sample-github/build.gradle | 6 +++--- sample-kotlin/build.gradle | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c1eeee44..ccba5115 100644 --- a/README.md +++ b/README.md @@ -76,36 +76,36 @@ Base modules integration: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy:1.4.3' - provided 'com.arello-mobile:moxy-compiler:1.4.3' + compile 'com.arello-mobile:moxy:1.4.4' + provided 'com.arello-mobile:moxy-compiler:1.4.4' } ``` If you want to see generated code, use `apt` instead of `provided` dependency type: ```groovy dependencies { ... - apt 'com.arello-mobile:moxy-compiler:1.4.3' + apt 'com.arello-mobile:moxy-compiler:1.4.4' } ``` Note: if you use gradle plugin verion 2.2.2 and above, so you can use `annotationProcessor` instead of `apt`: ```groovy dependencies { ... - annotationProcessor 'com.arello-mobile:moxy-compiler:1.4.3' + annotationProcessor 'com.arello-mobile:moxy-compiler:1.4.4' } ``` For additional base view classes `MvpActivity` and `MvpFragment` add this: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy-android:1.4.3' + compile 'com.arello-mobile:moxy-android:1.4.4' } ``` 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.4.3' + compile 'com.arello-mobile:moxy-app-compat:1.4.4' compile 'com.android.support:appcompat-v7:$support_version' } ``` @@ -114,7 +114,7 @@ If you are using kotlin, use `kapt` instead of `provided`/`apt` dependency type ```groovy dependencies { ... - kapt 'com.arello-mobile:moxy-compiler:1.4.3' + kapt 'com.arello-mobile:moxy-compiler:1.4.4' } kapt { generateStubs = true diff --git a/build.gradle b/build.gradle index 1470a485..23c94a7e 100644 --- a/build.gradle +++ b/build.gradle @@ -19,8 +19,8 @@ allprojects { } ext { - targetVersionCode = 36 - targetVersionName = "1.4.3" + targetVersionCode = 37 + targetVersionName = "1.4.4" } task clean(type: Delete) { diff --git a/sample-github/build.gradle b/sample-github/build.gradle index c5b63688..7869f08a 100644 --- a/sample-github/build.gradle +++ b/sample-github/build.gradle @@ -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.4.3' - compile 'com.arello-mobile:moxy-app-compat:1.4.3' - annotationProcessor 'com.arello-mobile:moxy-compiler:1.4.3' + compile 'com.arello-mobile:moxy:1.4.4' + compile 'com.arello-mobile:moxy-app-compat:1.4.4' + annotationProcessor 'com.arello-mobile:moxy-compiler:1.4.4' } \ No newline at end of file diff --git a/sample-kotlin/build.gradle b/sample-kotlin/build.gradle index 74e859ad..de938442 100644 --- a/sample-kotlin/build.gradle +++ b/sample-kotlin/build.gradle @@ -40,9 +40,9 @@ android { dependencies { compile 'com.android.support:appcompat-v7:25.0.0' - compile 'com.arello-mobile:moxy:1.4.3' - compile 'com.arello-mobile:moxy-app-compat:1.4.3' - kapt 'com.arello-mobile:moxy-compiler:1.4.3' + compile 'com.arello-mobile:moxy:1.4.4' + compile 'com.arello-mobile:moxy-app-compat:1.4.4' + kapt 'com.arello-mobile:moxy-compiler:1.4.4' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" }