diff --git a/README.md b/README.md index 2a15d775..d5556eea 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Date Picker | Time Picker The easiest way to add the Material DateTime Picker library to your project is by adding it as a dependency to your `build.gradle` ```groovy dependencies { - compile 'com.wdullaer:materialdatetimepicker:4.0.1' + compile 'com.wdullaer:materialdatetimepicker:4.1.0' } ``` @@ -243,7 +243,7 @@ This library depends on some androidx support libraries. Because the jvm allows Using the following snippet in your apps `build.gradle` file you can exclude this library's transitive appcompat library dependency from being installed. ```groovy -compile ('com.wdullaer:materialdatetimepicker:4.0.1') { +compile ('com.wdullaer:materialdatetimepicker:4.1.0') { exclude group: 'androidx.appcompat' } ``` diff --git a/README_ES.md b/README_ES.md index 1e80b1e6..ca4e309d 100644 --- a/README_ES.md +++ b/README_ES.md @@ -42,7 +42,7 @@ Selector de fecha | Selector de tiempo La forma más fácil de agregar a la Biblioteca la _Material DateTime Picker_ a su proyecto es agregarla como una dependencia `build.gradle` ```groovy a sus dependencias{ - compile 'com.wdullaer:materialdatetimepicker:4.0.1' + compile 'com.wdullaer:materialdatetimepicker:4.1.0' } ``` @@ -244,7 +244,7 @@ puede desactivar la carga de la biblioteca de soporte para MaterialDateTimePicke Usando el siguiente fragmento en el archivo `build.gradle` de su aplicación, puede excluir la posibilidad de que se instale la biblioteca de soporte transitivo de esta biblioteca. ```groovy -implementation ('com.wdullaer:materialdatetimepicker:4.0.1') { +implementation ('com.wdullaer:materialdatetimepicker:4.1.0') { exclude group: 'com.android.support' } ``` diff --git a/build.gradle b/build.gradle index 8e0219b4..fe060da2 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.2.0' + classpath 'com.android.tools.build:gradle:3.2.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle.properties b/gradle.properties index efdad20c..abfffd36 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=4.0.1 -VERSION_CODE=47 +VERSION_NAME=4.1.0 +VERSION_CODE=48 GROUP=com.wdullaer ANDROID_BUILD_MIN_SDK_VERSION=16