Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.android.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- We have fixed the textinputs hiding behind on-screen keyboard.
- We have fixed checking and asking for `read-media` permissions on Android devices using SDK 33+.
- We have improved the UI for users who use three-button navigation when edge-to-edge mode is enabled.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|fontScale"
android:launchMode="singleTask"
android:screenOrientation="user"
android:windowSoftInputMode="stateHidden"
android:windowSoftInputMode="adjustPan"
android:exported="true">
<intent-filter>
<action android:name="com.mendix.mendixnative.action.START"/>
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/production/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|fontScale"
android:launchMode="singleTask"
android:screenOrientation="user"
android:windowSoftInputMode="stateHidden"
android:windowSoftInputMode="adjustPan"
android:exported="true">
<intent-filter>
<action android:name="com.mendix.mendixnative.action.START" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class MainActivity : AppCompatActivity(), DefaultHardwareBackBtnHandler, LaunchS
preferences = AppPreferences(applicationContext)
devAppPreferences = getPreferences(MODE_PRIVATE)

window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN)

setupHomeViewModel()
setupNavigation()
Expand Down