Skip to content

Commit

Permalink
Release v1.2.1 with bellow description:
Browse files Browse the repository at this point in the history
- [#9]: Added new attr and method to enable/disable search dismiss button, dismiss text and dismiss color
- [#10]: Added new attr and method to set typeface
- [#14]: Fixed clearSelection() not work for searchable mode
- [#15]: Added new attr and method to custom dropdown list background and search dialog ListView background
  • Loading branch information
Chivorns committed Apr 1, 2020
1 parent e1560ee commit adb414e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ The best Android spinner library for your android application with more customiz

```gradle
dependencies {
implementation 'com.github.chivorns:smartmaterialspinner:1.1.6'
implementation 'com.github.chivorns:smartmaterialspinner:1.2.1'
}
```
#### <a name="AndroidXGradle"></a> AndroidX Project
```gradle
dependencies {
implementation 'com.github.chivorns.androidx:smartmaterialspinner:1.0.0'
implementation 'com.github.chivorns.androidx:smartmaterialspinner:1.2.1'
}
```

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.3.70'
kotlin_version = '1.3.71'
}

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 28
versionCode 4
versionName "1.1.0"
versionCode 5
versionName "1.2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 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.1.6'
PUBLISH_VERSION = '1.2.1'

// Bintray
BINTRAY_REPO = 'maven'
Expand All @@ -32,7 +32,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 21
versionCode 22
versionName "$PUBLISH_VERSION"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit adb414e

Please sign in to comment.