diff --git a/README.md b/README.md index 4cd5d92..112a58d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ # SmartMaterialSpinner The best Android spinner library for your android application with more customization ## Current version -### Legacy ([See usage](#LegacyGradle)) -![Android Legacy](https://api.bintray.com/packages/chivorn/maven/smartmaterialspinner/images/download.svg) -### AndroidX ([See usage](#AndroidXGradle)) -![AndroidX](https://api.bintray.com/packages/chivorn/androidx/smartmaterialspinner/images/download.svg) +![current](https://api.bintray.com/packages/chivorn/maven/smartmaterialspinner/images/download.svg) + ## Available on Play Store @@ -130,7 +128,7 @@ The best Android spinner library for your android application with more customiz ```gradle dependencies { - implementation 'com.github.chivorns:smartmaterialspinner:1.3.0' + implementation 'com.github.chivorns:smartmaterialspinner:1.4.0' } ``` diff --git a/build.gradle b/build.gradle index 7aa46a2..e0a2855 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - kotlin_version = '1.4.31' + kotlin_version = '1.4.32' } repositories { diff --git a/demojava/build.gradle b/demojava/build.gradle index 498081b..ce9a988 100644 --- a/demojava/build.gradle +++ b/demojava/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.chivorn.smsp.demojava" minSdkVersion 14 targetSdkVersion 29 - versionCode 6 - versionName "1.3.0" + versionCode 7 + versionName "1.4.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/resources/build.gradle b/resources/build.gradle index 297e566..60917d5 100644 --- a/resources/build.gradle +++ b/resources/build.gradle @@ -28,7 +28,7 @@ dependencies { implementation project(':smartmaterialspinner') api 'androidx.appcompat:appcompat:1.2.0' api 'androidx.constraintlayout:constraintlayout:2.0.4' - api 'junit:junit:4.13.1' + api 'junit:junit:4.13.2' api 'androidx.test:runner:1.3.0' api 'androidx.test.espresso:espresso-core:3.3.0' } diff --git a/smartmaterialspinner/build.gradle b/smartmaterialspinner/build.gradle index 1934f83..ec9c211 100644 --- a/smartmaterialspinner/build.gradle +++ b/smartmaterialspinner/build.gradle @@ -5,7 +5,7 @@ ext { LIBRARY_NAME = 'SmartMaterialSpinner' PUBLISH_GROUP_ID = 'com.github.chivorns' PUBLISH_ARTIFACT_ID = LIBRARY_NAME.toLowerCase() - PUBLISH_VERSION = '1.3.0' + PUBLISH_VERSION = '1.4.0' // Bintray BINTRAY_REPO = 'maven' @@ -32,7 +32,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 29 - versionCode 23 + versionCode 24 versionName "$PUBLISH_VERSION" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -57,7 +57,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.2.0' - testImplementation 'junit:junit:4.13.1' + testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' }