feat(ui): migrate project to Jetpack Compose - #14
Merged
Conversation
- remove the legacy :core:image-glide module and related view-era dependencies\n- add Compose, Coil 3 and markdown renderer dependencies for the new UI stack\n- update project docs and module graph to reflect the compose-only architecture
- replace the activity view host with a compose app shell and compose-backed system bar handling\n- add compose implementations for feed, article and recommendation surfaces with decompose integration\n- remove legacy XML layouts, view ext adapters and old feed ui bridge code
- reshape feed stores and repository wiring around the compose-first decompose flow\n- update shared network, recommendation and profile integrations to match the new article and recommendation contracts\n- simplify supporting core contracts used by the compose-only feed pipeline
- update architecture and integration tests for the compose-only feed module graph\n- replace obsolete view-based checks with compose smoke and semantics coverage\n- realign repository, worker and store tests with the new navigation and state flow
- refresh benchmark navigation targets for the compose-only app shell\n- capture a new baseline profile after the feed migration\n- keep benchmark scaffolding aligned with the new startup and scroll flows
- configure ktlint and Spotless to ignore function naming for @composable functions\n- remove the old file-specific workaround in favor of a project-wide compose-aware rule
Move article read-progress logic out of Compose screens and into feed components, add language-aware recommendation filtering, wire Room migration 1->2 for content language, and enforce architecture tests so Compose UI stays on contract-only dependencies.
Document the Compose-only runtime, add the EMUI baseline-profile workaround, accept the profiled P99 tail as a known non-blocking demo limitation, and ignore local Perfetto analysis artifacts.
Arm shared bounds one frame before navigation, keep the article preview snapshot stable during the initial destination composition, and apply the same transition arming to related article cards.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request completes the migration of the application's UI layer to Jetpack Compose.
Changes