Skip to content

Commit ac2ded2

Browse files
authored
Merge pull request #433 from lapism/dev
Dev
2 parents 666e1ad + a4ca997 commit ac2ded2

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

README.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
![API](https://img.shields.io/badge/API-26%2B-brightgreen.svg?style=flat)
1+
![API](https://img.shields.io/badge/minSdk-21-brightgreen.svg?style=flat)
2+
![API](https://img.shields.io/badge/targetSdk-33-brightgreen.svg?style=flat)
23
[![Kotlin Version](https://img.shields.io/badge/Kotlin-blue.svg)](https://kotlinlang.org)
3-
[![Download](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo1.maven.org%2Fmaven2%2Fio%2Fgithub%2Flapism%2Fsearch%2Fmaven-metadata.xml) ](https://repo1.maven.org/maven2/io/github/lapism/search/)
4+
[![Maven Central](https://img.shields.io/maven-central/v/io.github.lapism/search)](https://s01.oss.sonatype.org/content/repositories/releases/io/github/lapism/search)
45
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
56

67
# Search
@@ -13,9 +14,6 @@
1314
![Search](https://github.com/lapism/Search/blob/master/images/search.png)
1415

1516
## Api
16-
17-
- minSdkVersion = 21
18-
- targetSdkVersion = 31
1917
- Java = 1.8
2018
- Kotlin = 1.8
2119

@@ -28,7 +26,7 @@ repositories {
2826
}
2927
3028
dependencies {
31-
implementation 'io.github.lapism:search:2.0.0'
29+
implementation 'io.github.lapism:search:2.0.2'
3230
}
3331
```
3432

@@ -163,17 +161,17 @@ You have to use app theme Theme.Material3.* or Theme.MaterialComponents.*.
163161
</declare-styleable>
164162

165163
<declare-styleable name="MaterialSearchView">
166-
<attr name="search_navigationIconCompat" />
167-
<attr name="search_navigationIcon" />
168-
<attr name="search_navigationContentDescription" />
169-
<attr name="search_navigationBackgroundColor" />
170-
<attr name="search_navigationElevation" />
171-
<attr name="search_clearIcon" format="reference" />
172-
<attr name="search_dividerColor" format="reference" />
173-
<attr name="search_scrimColor" format="reference" />
174-
<attr name="android:hint" />
175-
<attr name="android:imeOptions" />
176-
<attr name="android:inputType" />
164+
<attr name="search_navigationIconCompat" />
165+
<attr name="search_navigationIcon" />
166+
<attr name="search_navigationContentDescription" />
167+
<attr name="search_navigationBackgroundColor" />
168+
<attr name="search_navigationElevation" />
169+
<attr name="search_clearIcon" format="reference" />
170+
<attr name="search_dividerColor" format="reference" />
171+
<attr name="search_scrimColor" format="reference" />
172+
<attr name="android:hint" />
173+
<attr name="android:imeOptions" />
174+
<attr name="android:inputType" />
177175
</declare-styleable>
178176
```
179177

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
defaultConfig {
1212
minSdk 21
1313
targetSdk 33
14-
versionCode 2000000
15-
versionName "2.0.0"
14+
versionCode 2002000
15+
versionName "2.0.2"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
consumerProguardFiles "consumer-rules.pro"
1818
}
@@ -56,7 +56,7 @@ dependencies {
5656

5757
ext {
5858
PUBLISH_GROUP_ID = 'io.github.lapism'
59-
PUBLISH_VERSION = '2.0.0'
59+
PUBLISH_VERSION = '2.0.2'
6060
PUBLISH_ARTIFACT_ID = 'search'
6161
PUBLISH_DESCRIPTION = 'Material You Search component for Android, SearchView'
6262
PUBLISH_URL = 'https://github.com/lapism/search'

0 commit comments

Comments
 (0)