File tree Expand file tree Collapse file tree
java/com/fintamath/widget/keyboard Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ apply plugin: 'org.jetbrains.kotlin.plugin.serialization'
44
55android {
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 {
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff line change 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" >
You can’t perform that action at this time.
0 commit comments