diff --git a/frontend/src-tauri/gen/android/app/src/main/AndroidManifest.xml b/frontend/src-tauri/gen/android/app/src/main/AndroidManifest.xml index cac9dda2..ce6aef39 100644 --- a/frontend/src-tauri/gen/android/app/src/main/AndroidManifest.xml +++ b/frontend/src-tauri/gen/android/app/src/main/AndroidManifest.xml @@ -15,6 +15,7 @@ android:usesCleartextTraffic="${usesCleartextTraffic}"> (android.R.id.content) ViewCompat.setOnApplyWindowInsetsListener(rootView) { view, insets -> val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + val ime = insets.getInsets(WindowInsetsCompat.Type.ime()) view.setPadding( systemBars.left, systemBars.top, systemBars.right, - systemBars.bottom + maxOf(systemBars.bottom, ime.bottom) ) insets }