Releases: googlemaps/android-maps-compose
Releases · googlemaps/android-maps-compose
v5.0.0
5.0.0 (2024-05-07)
Bug Fixes
Features
- 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.
v4.4.2
v4.4.1
v4.4.0
4.4.0 (2024-04-23)
Features
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