You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
change GoogleMap() content parameter default to {} and make content non-nullable (#521) (8e5e3a6), closes #493
BREAKING CHANGES
Adds optional contentDescriptor parameter to MarkerComposable and AdvancedMarker. Makes content parameter of GoogleMap non-nullable, but with an empty default value.
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