Skip to content

Commit 41a77d8

Browse files
committed
Update SDK and minor fixes
1 parent ccc3cd7 commit 41a77d8

4 files changed

Lines changed: 7 additions & 10 deletions

File tree

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ apply plugin: 'org.jetbrains.kotlin.plugin.serialization'
44

55
android {
66
namespace 'com.fintamath'
7-
compileSdk 34
7+
compileSdk 36
88
ndkVersion "26.2.11394342"
99

1010
defaultConfig {
1111
applicationId "com.fintamath"
1212
minSdk 27
13-
targetSdk 34
14-
versionCode 92
15-
versionName "0.8.1 alpha"
13+
targetSdk 36
14+
versionCode 93
15+
versionName "0.8.2 alpha"
1616
}
1717

1818
buildTypes {

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
android:supportsRtl="true"
1212
android:enableOnBackInvokedCallback="true"
1313
android:theme="@style/Theme.Fintamath"
14-
tools:targetApi="34">
14+
tools:targetApi="36">
1515

1616
<activity
1717
android:name=".MainActivity"

app/src/main/java/com/fintamath/widget/keyboard/KeyboardView.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -828,10 +828,6 @@ private void showPreview(int keyIndex) {
828828
Key oldKey = keys[oldKeyIndex];
829829
oldKey.onReleased(mCurrentKeyIndex == NOT_A_KEY);
830830
invalidateKey(oldKeyIndex);
831-
832-
if (!mIsMiniKeyboard) {
833-
performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY_RELEASE);
834-
}
835831
}
836832
if (mCurrentKeyIndex != NOT_A_KEY && keys.length > mCurrentKeyIndex) {
837833
Key newKey = keys[mCurrentKeyIndex];
@@ -923,7 +919,7 @@ private void showKey(final int keyIndex) {
923919

924920
if (previewPopup.isShowing()) {
925921
previewPopup.update(mPopupPreviewX, mPopupPreviewY,
926-
popupWidth, popupHeight);
922+
popupWidth, popupHeight, true);
927923
} else {
928924
previewPopup.setWidth(popupWidth);
929925
previewPopup.setHeight(popupHeight);

app/src/main/res/values/themes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<item name="android:navigationBarColor">@color/background_keyboard</item>
88
<item name="android:textColor">@color/text_main</item>
99
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
10+
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
1011
</style>
1112

1213
<style name="Theme.Fintamath.PopupMenu" parent="@style/ThemeOverlay.AppCompat.Dark">

0 commit comments

Comments
 (0)