Skip to content

Commit

Permalink
1.1.7
Browse files Browse the repository at this point in the history
feature-优化TextWatcher接口
  • Loading branch information
wxw-9527 committed Dec 29, 2022
1 parent 05d48aa commit 45df653
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ dependencyResolutionManagement {

```groovy
dependencies {
implementation 'com.github.wxw-9527:MvpArms:1.1.6'
implementation 'com.github.wxw-9527:MvpArms:1.1.7'
}
```
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
minSdk 21
targetSdk 33
versionCode 116
versionName "1.1.6"
versionName "1.1.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
18 changes: 18 additions & 0 deletions arms/src/main/java/com/rouxinpai/arms/view/TextWatcher.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.rouxinpai.arms.view

import android.text.Editable

/**
* author : Saxxhw
* email : [email protected]
* time : 2022/12/29 21:27
* desc :
*/
interface TextWatcher : android.text.TextWatcher {

override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) = Unit

override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) = Unit

override fun afterTextChanged(s: Editable?) = Unit
}

0 comments on commit 45df653

Please sign in to comment.