feat: migrate android-maps-ktx into android-maps-utils (v6.0.0-rc01)#1716
Draft
dkhawk wants to merge 3 commits into
Draft
feat: migrate android-maps-ktx into android-maps-utils (v6.0.0-rc01)#1716dkhawk wants to merge 3 commits into
dkhawk wants to merge 3 commits into
Conversation
- Consolidate all reactive Coroutine/Flow/Builder extensions into android-maps-utils canonical packages (com.google.maps.android.*) - Preserve com.google.maps.android.ktx.* as deprecated compatibility layer with @deprecated forwarding wrappers and typealiases - Migrate all 18 KTX unit test suites with both canonical and shim test coverage (100% pass rate across 160 test tasks) - Add KtxExtensionsDemoActivity demonstrating reactive extensions to demo app - Update version to 6.0.0-rc01 and update README.md/CHANGELOG.md
…ders across all files
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
Consolidates all Kotlin reactive Coroutine/Flow/Builder extensions (
maps-ktxandmaps-utils-ktxfromandroid-maps-ktx) directly intoandroid-maps-utils, establishing a single canonical source of truth (v6.0.0-rc01).Key Changes
com.google.maps.android.*)android-maps-utilsmodules (:library,:clustering,:data,:heatmaps).awaitMap(),mapClickEvents(),addMarker { ... }) now reside directly inside canonical non-ktx packages (com.google.maps.android,com.google.maps.android.model,com.google.maps.android.collections,com.google.maps.android.clustering,com.google.maps.android.data.geojson,com.google.maps.android.data.kml,com.google.maps.android.heatmaps).com.google.maps.android.ktx.*)com.google.maps.android.ktx.*package structure via@Deprecated(level = DeprecationLevel.WARNING, replaceWith = ReplaceWith(...))forwarding wrappers and typealiases.100%pass rate across 160 test tasks).KtxExtensionsDemoActivityinto:demoillustrating both canonical and bridge builder usage without duplicate class issues.README.mdandCHANGELOG.mdwith consolidation guidelines and6.0.0-rc01notes.dokkaGenerateto update public API documentation.