Full edge to edge support - #2721
Conversation
|
✅ Work item link check complete. Description contains link AB#3129177 to an Azure Boards work item. |
4805266 to
4593377
Compare
|
✅ Work item link check complete. Description contains link AB#3129177 to an Azure Boards work item. |
|
|
||
| implementation 'org.apache.httpcomponents.core5:httpcore5:5.3' | ||
| implementation "com.nimbusds:nimbus-jose-jwt:$rootProject.ext.nimbusVersion" | ||
| implementation "androidx.activity:activity:1.8.2" |
There was a problem hiding this comment.
picked 1.8.2 as suggested by Nick Bopp (@nickbopp)
Pull request 4266808: Downgrade required androidx.activity version to 1.8 - Repos
b13fc75 to
302409b
Compare
4593377 to
13ff97f
Compare
|
✅ Work item link check complete. Description contains link AB#3129177 to an Azure Boards work item. |
The base branch was changed.
13ff97f to
f15f01a
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR implements full edge-to-edge support for Android UI by enabling edge-to-edge rendering by default and properly handling system insets to prevent UI overlap with system bars and other UI elements.
- Enables the edge-to-edge flight by default
- Implements proper inset handling for system bars, display cutouts, gestures, and keyboard
- Adds androidx.activity dependency for EdgeToEdge support
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| CommonFlight.java | Enables edge-to-edge handling flight by default |
| DualScreenActivity.java | Implements edge-to-edge rendering with proper inset handling and light theme |
| build.gradle | Adds androidx.activity dependency for EdgeToEdge functionality |
| changelog.txt | Documents the new edge-to-edge support feature |
|
✅ Work item link check complete. Description contains link AB#3129177 to an Azure Boards work item. |
…/DualScreenActivity.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…/DualScreenActivity.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
✅ Work item link check complete. Description contains link AB#3129177 to an Azure Boards work item. |
AB#3129177
- Also included keyboard insets as raised in Fix webview overlap with keyboard on SDK 35 #2712. Thank you Alexey Chekhovskiy (@Alexeyca)