Skip to content

Commit

Permalink
优化细节
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed Oct 22, 2021
1 parent e3ddb12 commit 515a574
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ allprojects {

2. 在Module的 **build.gradle** 里面添加引入依赖项
```gradle
implementation 'com.github.jenly1314:kingkeyboard:1.0.2'
implementation 'com.github.jenly1314:kingkeyboard:1.0.3'
```

Expand Down Expand Up @@ -254,14 +254,17 @@ implementation 'com.king.keyboard:kingkeyboard:1.0.0'
```


更多使用详情,请查看[app](app)中的源码使用示例
更多使用详情,请查看[app](app)中的源码使用示例或直接查看[API帮助文档](https://jenly1314.github.io/projects/KingKeyboard/doc/)

### 相关推荐

#### [SplitEditText](https://github.com/jenly1314/SplitEditText) 一个灵活的分割可编辑框;常常应用于 **验证码输入****密码输入** 等场景。

## 版本记录

#### v1.0.3:2021-10-22
* 优化细节

#### v1.0.2:2021-9-29
* 新增 **KingKeyboard.sendKey(primaryCode: Int)** 方法;(支持通过发送按键的值来控制键盘)

Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/release/output.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":3,"versionName":"1.0.2","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release","dirName":""},"path":"app-release.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":4,"versionName":"1.0.3","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release","dirName":""},"path":"app-release.apk","properties":{}}]
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

VERSION_NAME=1.0.2
VERSION_CODE=3
VERSION_NAME=1.0.3
VERSION_CODE=4
GROUP=com.github.jenly1314

POM_DESCRIPTION=KingKeyboard for Android
Expand Down
2 changes: 2 additions & 0 deletions kingkeyboard/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-keep class com.king.keyboard.** { *; }
-keep class * extends com.king.keyboard.KingKeyboard
4 changes: 2 additions & 2 deletions versions.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//App
def app_version = [:]
app_version.versionCode = 3
app_version.versionName = "1.0.2"
app_version.versionCode = 4
app_version.versionName = "1.0.3"
ext.app_version = app_version

//build version
Expand Down

0 comments on commit 515a574

Please sign in to comment.