File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1- ## 13.3.0
1+ ## 13.3.1
22
3- * Add support for ` WORKOUT_ROUTE ` - PR [ #454 ] ( https://github.com/carp-dk/carp-health-flutter/pull/454 )
43* iOS: Fix issues with app crashing on iOS 15
54* iOS: Add support for ` AppleSleepingWristTemperature ` - PR [ #468 ] ( https://github.com/carp-dk/carp-health-flutter/pull/468 )
6- * Android: Add support for ` ActivityIntensityRecord ` (READ/WRITE/Aggregate)
75* Android: Add support for ` SkinTemperatureRecord ` (READ/WRITE)
6+
7+ ## 13.3.0
8+
9+ * Add support for ` WORKOUT_ROUTE ` - PR [ #454 ] ( https://github.com/carp-dk/carp-health-flutter/pull/454 )
10+ * Android: Add support for ` ActivityIntensityRecord ` (READ/WRITE/Aggregate)
811* Update to ` androidx.health.connect:connect-client:1.2.0-alpha02 `
912
1013## 13.2.1
Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ class HealthChangesResponse {
9292 factory HealthChangesResponse .fromMethodChannel (Map <dynamic , dynamic > map) {
9393 final rawChanges = map['changes' ] as List ? ?? const [];
9494 final changes = rawChanges
95- .whereType <Map >()
96- .map ((change) => HealthChange .fromMethodChannel (change))
97- .toList ();
95+ .whereType <Map < dynamic , dynamic > >()
96+ .map ((change) => HealthChange .fromMethodChannel (change))
97+ .toList ();
9898
9999 return HealthChangesResponse (
100100 changes: changes,
You can’t perform that action at this time.
0 commit comments