Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chivorns committed Mar 26, 2021
1 parent 23ece08 commit 509d24f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The best Android spinner library for your android application with more customiz
* `smsp_enableDismissSearch`: To enable/disable dismiss button on search dialog
* `smsp_dismissSearchText`: To set dismiss button text for search dialog
* `smsp_dismissSearchColor`: To set dismiss button text color for search dialog
* `smsp_searchDropdownView`: To custom search view item

### Spinner item
* `smsp_itemSize`: To set spinner item size
Expand Down Expand Up @@ -126,17 +127,10 @@ The best Android spinner library for your android application with more customiz
## Usage
### Add the dependencies to your gradle file:
#### <a name="LegacyGradle"></a> Legacy Project

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

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 5
versionName "1.2.1"
versionCode 6
versionName "1.3.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public void initItemList() {
provinceList.add("Kep");
provinceList.add("Koh Kong");
provinceList.add("Kratie");
provinceList.add("Some very very very very very very very very very very very very big province");
provinceList.add("Mondulkiri");
provinceList.add("Oddar Meanchey");
provinceList.add("Pailin");
Expand Down
8 changes: 4 additions & 4 deletions smartmaterialspinner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: 'com.android.library'
ext {
// Library
LIBRARY_NAME = 'SmartMaterialSpinner'
PUBLISH_GROUP_ID = 'com.github.chivorns.androidx'
PUBLISH_GROUP_ID = 'com.github.chivorns'
PUBLISH_ARTIFACT_ID = LIBRARY_NAME.toLowerCase()
PUBLISH_VERSION = '1.2.1'
PUBLISH_VERSION = '1.3.0'

// Bintray
BINTRAY_REPO = 'androidx'
BINTRAY_REPO = 'maven'
LIBRARY_DESC = 'Provide with more customization for your spinner.'

// Github
Expand All @@ -32,7 +32,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionCode 2
versionCode 23
versionName "$PUBLISH_VERSION"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 509d24f

Please sign in to comment.