I'm working on an app with WeatherKit. The app works on the simulator, but it doesn't work on the real device. Calling "weatherService.weather(for: ..." never returns data or an error.
do {
let weather = try await weatherService.weather(for: myPlace)
print(weather) // always on the simulator, never on the device
} catch {
// never gets a call
print(error)
}
I'm using the latest beta on my device.
Apple's TestFlight sample app doesn't work on the device, but it works fine on the simulator.
Does anyone's WeatherKit work on a real device?