From 1749a84ef648c75837c058335be3af53c9754f10 Mon Sep 17 00:00:00 2001 From: Michael Muenzer Date: Tue, 2 May 2017 22:59:07 +0200 Subject: [PATCH] Released version 0.2 --- README.md | 2 +- library/build.gradle | 5 +++-- sample-mobile/build.gradle | 2 +- sample-tv/build.gradle | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 637d2c4..bc6c8cd 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The library is available on `jcenter()`. Just add these lines in your `build.gra ```groovy dependencies { - compile 'com.michaelmuenzer.android:ScrollableNumberPicker:0.1' + compile 'com.michaelmuenzer.android:ScrollableNumberPicker:0.2' } ``` diff --git a/library/build.gradle b/library/build.gradle index 1dd1929..4e5fabc 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -3,12 +3,12 @@ apply plugin: 'com.android.library' ext { PUBLISH_GROUP_ID = 'com.michaelmuenzer.android' PUBLISH_ARTIFACT_ID = 'ScrollableNumberPicker' - PUBLISH_VERSION = '0.1' + PUBLISH_VERSION = '0.2' } android { compileSdkVersion 25 - buildToolsVersion "25.0.2" + buildToolsVersion "25.0.3" lintOptions { disable 'RestrictedApi' @@ -31,6 +31,7 @@ android { final ANDROID_SUPPORTLIB_VERSION = '25.3.1' dependencies { + compile "com.android.support:support-compat:${ANDROID_SUPPORTLIB_VERSION}" compile "com.android.support:appcompat-v7:${ANDROID_SUPPORTLIB_VERSION}" compile "com.android.support:support-annotations:${ANDROID_SUPPORTLIB_VERSION}" } diff --git a/sample-mobile/build.gradle b/sample-mobile/build.gradle index cfb3fc9..6e9fb1e 100644 --- a/sample-mobile/build.gradle +++ b/sample-mobile/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "25.0.2" + buildToolsVersion "25.0.3" defaultConfig { applicationId "com.michaelmuenzer.android.scrollablenumberpicker.sample" minSdkVersion 16 diff --git a/sample-tv/build.gradle b/sample-tv/build.gradle index 2dc5f78..8aeca01 100644 --- a/sample-tv/build.gradle +++ b/sample-tv/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "25.0.2" + buildToolsVersion "25.0.3" defaultConfig { applicationId "com.michaelmuenzer.android.tv.scrollablenumberpicker.sample" minSdkVersion 21