Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chivorns committed Apr 3, 2021
1 parent f4ad916 commit 74ae443
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
<a href="https://play.google.com/store/apps/details?id=com.chivorn.smsp.demojava" target="_blank">
Expand Down Expand Up @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions demojava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
6 changes: 3 additions & 3 deletions smartmaterialspinner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -32,7 +32,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionCode 23
versionCode 24
versionName "$PUBLISH_VERSION"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -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'
}
Expand Down

0 comments on commit 74ae443

Please sign in to comment.