Skip to content

Commit

Permalink
Merge pull request #433 from lapism/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
lapism authored Nov 30, 2022
2 parents 666e1ad + a4ca997 commit ac2ded2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 20 deletions.
32 changes: 15 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
![API](https://img.shields.io/badge/API-26%2B-brightgreen.svg?style=flat)
![API](https://img.shields.io/badge/minSdk-21-brightgreen.svg?style=flat)
![API](https://img.shields.io/badge/targetSdk-33-brightgreen.svg?style=flat)
[![Kotlin Version](https://img.shields.io/badge/Kotlin-blue.svg)](https://kotlinlang.org)
[![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/)
[![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)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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

## Api

- minSdkVersion = 21
- targetSdkVersion = 31
- Java = 1.8
- Kotlin = 1.8

Expand All @@ -28,7 +26,7 @@ repositories {
}
dependencies {
implementation 'io.github.lapism:search:2.0.0'
implementation 'io.github.lapism:search:2.0.2'
}
```

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

<declare-styleable name="MaterialSearchView">
<attr name="search_navigationIconCompat" />
<attr name="search_navigationIcon" />
<attr name="search_navigationContentDescription" />
<attr name="search_navigationBackgroundColor" />
<attr name="search_navigationElevation" />
<attr name="search_clearIcon" format="reference" />
<attr name="search_dividerColor" format="reference" />
<attr name="search_scrimColor" format="reference" />
<attr name="android:hint" />
<attr name="android:imeOptions" />
<attr name="android:inputType" />
<attr name="search_navigationIconCompat" />
<attr name="search_navigationIcon" />
<attr name="search_navigationContentDescription" />
<attr name="search_navigationBackgroundColor" />
<attr name="search_navigationElevation" />
<attr name="search_clearIcon" format="reference" />
<attr name="search_dividerColor" format="reference" />
<attr name="search_scrimColor" format="reference" />
<attr name="android:hint" />
<attr name="android:imeOptions" />
<attr name="android:inputType" />
</declare-styleable>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdk 21
targetSdk 33
versionCode 2000000
versionName "2.0.0"
versionCode 2002000
versionName "2.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down Expand Up @@ -56,7 +56,7 @@ dependencies {

ext {
PUBLISH_GROUP_ID = 'io.github.lapism'
PUBLISH_VERSION = '2.0.0'
PUBLISH_VERSION = '2.0.2'
PUBLISH_ARTIFACT_ID = 'search'
PUBLISH_DESCRIPTION = 'Material You Search component for Android, SearchView'
PUBLISH_URL = 'https://github.com/lapism/search'
Expand Down

0 comments on commit ac2ded2

Please sign in to comment.