File tree 4 files changed +8
-15
lines changed
resources/src/main/java/com/chivorn/resourcemodule
4 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ The best Android spinner library for your android application with more customiz
30
30
* ` smsp_enableDismissSearch ` : To enable/disable dismiss button on search dialog
31
31
* ` smsp_dismissSearchText ` : To set dismiss button text for search dialog
32
32
* ` smsp_dismissSearchColor ` : To set dismiss button text color for search dialog
33
+ * ` smsp_searchDropdownView ` : To custom search view item
33
34
34
35
### Spinner item
35
36
* ` smsp_itemSize ` : To set spinner item size
@@ -126,17 +127,10 @@ The best Android spinner library for your android application with more customiz
126
127
127
128
## Usage
128
129
### Add the dependencies to your gradle file:
129
- #### <a name =" LegacyGradle " ></a > Legacy Project
130
130
131
131
``` gradle
132
132
dependencies {
133
- implementation 'com.github.chivorns:smartmaterialspinner:1.2.1'
134
- }
135
- ```
136
- #### <a name =" AndroidXGradle " ></a > AndroidX Project
137
- ``` gradle
138
- dependencies {
139
- implementation 'com.github.chivorns.androidx:smartmaterialspinner:1.2.1'
133
+ implementation 'com.github.chivorns:smartmaterialspinner:1.3.0'
140
134
}
141
135
```
142
136
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
applicationId " com.chivorn.smsp.demojava"
8
8
minSdkVersion 14
9
9
targetSdkVersion 29
10
- versionCode 5
11
- versionName " 1.2.1 "
10
+ versionCode 6
11
+ versionName " 1.3.0 "
12
12
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
13
13
}
14
14
buildTypes {
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ public void initItemList() {
69
69
provinceList .add ("Kep" );
70
70
provinceList .add ("Koh Kong" );
71
71
provinceList .add ("Kratie" );
72
- provinceList .add ("Some very very very very very very very very very very very very big province" );
73
72
provinceList .add ("Mondulkiri" );
74
73
provinceList .add ("Oddar Meanchey" );
75
74
provinceList .add ("Pailin" );
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ apply plugin: 'com.android.library'
3
3
ext {
4
4
// Library
5
5
LIBRARY_NAME = ' SmartMaterialSpinner'
6
- PUBLISH_GROUP_ID = ' com.github.chivorns.androidx '
6
+ PUBLISH_GROUP_ID = ' com.github.chivorns'
7
7
PUBLISH_ARTIFACT_ID = LIBRARY_NAME . toLowerCase()
8
- PUBLISH_VERSION = ' 1.2.1 '
8
+ PUBLISH_VERSION = ' 1.3.0 '
9
9
10
10
// Bintray
11
- BINTRAY_REPO = ' androidx '
11
+ BINTRAY_REPO = ' maven '
12
12
LIBRARY_DESC = ' Provide with more customization for your spinner.'
13
13
14
14
// Github
@@ -32,7 +32,7 @@ android {
32
32
defaultConfig {
33
33
minSdkVersion 14
34
34
targetSdkVersion 29
35
- versionCode 2
35
+ versionCode 23
36
36
versionName " $PUBLISH_VERSION "
37
37
38
38
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
You can’t perform that action at this time.
0 commit comments