Skip to content

v4.4.0

Choose a tag to compare

@googlemaps-bot googlemaps-bot released this 23 Apr 16:31
· 193 commits to main since this release

4.4.0 (2024-04-23)

Features

  • Add StyleSpans support for Polylines (#546) (105112a)

Bug Fixes

  • add stability configuration file to the core maps-compose project. The currently configured types are all the immutable data types from com.google.android.gms.maps.model that are currently used in android-maps-compose:maps-compose. These types will now be considered @stable by the compiler. Making immutable data types @stable can be a more effective measure than relying on strong skipping, as stable types can use structural equality, whereas strong skipping merely relies on referential equality, as of today. (#517) (bfe95dd), closes #152