Prepare release 17007#126
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the DFE-backed paging flows and search UI in :app to improve long-scroll behavior (avoid pages being dropped behind the user) and ensure search results remain fully visible above the navigation bar, while also bumping the release versionCode for the 17007 release.
Changes:
- Remove
PagingConfig.maxSizecaps from History/Search/Wishlist DFE paging configs to prevent older pages being dropped during scrolling. - Add
WindowInsets.navigationBarscontent padding to the search resultsLazyColumnso the last row isn’t obscured. - Bump
:appversionCodeto17007.
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| app/src/main/java/com/anod/appwatcher/wishlist/WishListViewModel.kt | Removes maxSize from wishlist paging config to prevent aggressive page dropping. |
| app/src/main/java/com/anod/appwatcher/search/SearchViewModel.kt | Removes maxSize from search paging config to prevent aggressive page dropping. |
| app/src/main/java/com/anod/appwatcher/search/SearchResultsScreen.kt | Adds navigation bar inset padding to the search results list so the last item is fully visible. |
| app/src/main/java/com/anod/appwatcher/history/HistoryListViewModel.kt | Removes maxSize from history paging config to prevent aggressive page dropping. |
| app/build.gradle.kts | Increments Android versionCode to 17007 for the release. |
Fix DFE paging lists so purchase history records remain stable when scrolling back to previously loaded pages. Add navigation bar padding to search results and regenerate release baseline profiles. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
anod
force-pushed
the
fix-purchases-scroll-records
branch
from
May 29, 2026 13:03
2b1f3d2 to
77fc084
Compare
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.
Summary
Validation