I have a react native app for iOS (planning to add Android support) built with Expo. I've been using [email protected] for a while. I understand recent versions have better support for Expo, specifically for Expo SDK 53. When I try to update I get several errors related to TerraActivityData.swift:
(node_modules/terra-react/ios/TerraActivityData.swift:41:25)
39 | hardware_version: deviceData["hardware_version"] as? String
40 | ),
41 | distance_data: .init(summary: .init(distance_meters: distanceMeters)),
| ^ cannot infer contextual base in reference to member 'init'
42 | calories_data: .init(TerraCaloriesData(net_activity_calories: caloriesData["net_activity_calories"] as? Double))
43 | )
44 | }
What's the way to update?