Skip to content
Open
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 wrapper/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
android:name=".MainActivity"
android:configChanges="keyboard|keyboardHidden"
android:exported="true"
android:windowSoftInputMode="adjustResize"
Copy link

Copilot AI Apr 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given the app’s minSdk is 33 and MainActivity calls enableEdgeToEdge() (which opts into edge-to-edge window insets handling), android:windowSoftInputMode="adjustResize" is often ineffective on modern Android when the window is not fitting system windows. This change may therefore not actually resize the Compose layout/WebView when the IME appears. Consider either disabling edge-to-edge for this activity (fit system windows) or handling IME insets in Compose (e.g., applying IME padding/insets to the Scaffold/content) so the WebView reliably shrinks above the keyboard on Android 13+.

Suggested change
android:windowSoftInputMode="adjustResize"
android:windowSoftInputMode="adjustPan"

Copilot uses AI. Check for mistakes.
android:theme="@style/Theme.Wwwallet">

<intent-filter>
Expand Down
Loading