Skip to content

Commit 74ae443

Browse files
committed
Release v1.4.0
1 parent f4ad916 commit 74ae443

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# SmartMaterialSpinner
22
The best Android spinner library for your android application with more customization
33
## Current version
4-
### Legacy ([See usage](#LegacyGradle))
5-
![Android Legacy](https://api.bintray.com/packages/chivorn/maven/smartmaterialspinner/images/download.svg)
6-
### AndroidX ([See usage](#AndroidXGradle))
7-
![AndroidX](https://api.bintray.com/packages/chivorn/androidx/smartmaterialspinner/images/download.svg)
4+
![current](https://api.bintray.com/packages/chivorn/maven/smartmaterialspinner/images/download.svg)
5+
86

97
## Available on Play Store
108
<a href="https://play.google.com/store/apps/details?id=com.chivorn.smsp.demojava" target="_blank">
@@ -130,7 +128,7 @@ The best Android spinner library for your android application with more customiz
130128

131129
```gradle
132130
dependencies {
133-
implementation 'com.github.chivorns:smartmaterialspinner:1.3.0'
131+
implementation 'com.github.chivorns:smartmaterialspinner:1.4.0'
134132
}
135133
```
136134

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
kotlin_version = '1.4.31'
4+
kotlin_version = '1.4.32'
55
}
66

77
repositories {

demojava/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.chivorn.smsp.demojava"
88
minSdkVersion 14
99
targetSdkVersion 29
10-
versionCode 6
11-
versionName "1.3.0"
10+
versionCode 7
11+
versionName "1.4.0"
1212
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1313
}
1414
buildTypes {

resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation project(':smartmaterialspinner')
2929
api 'androidx.appcompat:appcompat:1.2.0'
3030
api 'androidx.constraintlayout:constraintlayout:2.0.4'
31-
api 'junit:junit:4.13.1'
31+
api 'junit:junit:4.13.2'
3232
api 'androidx.test:runner:1.3.0'
3333
api 'androidx.test.espresso:espresso-core:3.3.0'
3434
}

smartmaterialspinner/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ext {
55
LIBRARY_NAME = 'SmartMaterialSpinner'
66
PUBLISH_GROUP_ID = 'com.github.chivorns'
77
PUBLISH_ARTIFACT_ID = LIBRARY_NAME.toLowerCase()
8-
PUBLISH_VERSION = '1.3.0'
8+
PUBLISH_VERSION = '1.4.0'
99

1010
// Bintray
1111
BINTRAY_REPO = 'maven'
@@ -32,7 +32,7 @@ android {
3232
defaultConfig {
3333
minSdkVersion 14
3434
targetSdkVersion 29
35-
versionCode 23
35+
versionCode 24
3636
versionName "$PUBLISH_VERSION"
3737

3838
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -57,7 +57,7 @@ android {
5757
dependencies {
5858
implementation fileTree(dir: 'libs', include: ['*.jar'])
5959
implementation 'androidx.appcompat:appcompat:1.2.0'
60-
testImplementation 'junit:junit:4.13.1'
60+
testImplementation 'junit:junit:4.13.2'
6161
androidTestImplementation 'androidx.test:runner:1.3.0'
6262
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
6363
}

0 commit comments

Comments
 (0)