Skip to content

Commit 042a010

Browse files
committed
Fix for clipped keyboard popups on API 28+
1 parent 439fe69 commit 042a010

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can import `mongol-library` into your project from jCenter by adding the fol
4242

4343
```java
4444
dependencies {
45-
implementation 'net.studymongolian:mongol-library:1.16.3'
45+
implementation 'net.studymongolian:mongol-library:1.16.4'
4646
}
4747
```
4848

@@ -676,6 +676,7 @@ The keyboards are embedded in the keyboard container, which acts as a controller
676676

677677
#### Version changes
678678

679+
* `1.16.4`: Fix for system keyboard key popups getting clipped on API 28+
679680
* `1.16.3`: Make hooked Y the default when entering [Vowel + Y + I] using the `ImeContainer`
680681
* `1.16.2`: Shadow, text view, and edit text bug fixes
681682
* `1.16.1`: Added ability to set text shadow

README.zh-Hans.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
```java
4343
dependencies {
44-
implementation 'net.studymongolian:mongol-library:1.16.3'
44+
implementation 'net.studymongolian:mongol-library:1.16.4'
4545
}
4646
```
4747

demo-app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "net.studymongolian.mongollibrarydemo"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 32
10-
versionName "1.16.3"
9+
versionCode 33
10+
versionName "1.16.4"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

demo-app/release/demo-app-release.apk

560 Bytes
Binary file not shown.

demo-app/release/output.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":32,"versionName":"1.16.3","enabled":true,"outputFile":"demo-app-release.apk","fullName":"release","baseName":"release"},"path":"demo-app-release.apk","properties":{}}]
1+
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":33,"versionName":"1.16.4","enabled":true,"outputFile":"demo-app-release.apk","fullName":"release","baseName":"release"},"path":"demo-app-release.apk","properties":{}}]

mongol-library/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
siteUrl = 'https://github.com/suragch/mongol-library'
1414
gitUrl = 'https://github.com/suragch/mongol-library.git'
1515

16-
libraryVersion = '1.16.3'
16+
libraryVersion = '1.16.4'
1717

1818
developerId = 'suragch'
1919
developerName = 'Suragch'
@@ -29,8 +29,8 @@ android {
2929
defaultConfig {
3030
minSdkVersion rootProject.ext.minSdkVersion
3131
targetSdkVersion rootProject.ext.targetSdkVersion
32-
versionCode 49
33-
versionName "1.16.3"
32+
versionCode 50
33+
versionName "1.16.4"
3434

3535
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3636

0 commit comments

Comments
 (0)