CLLocationManager permission prompt never appears in Swift Playgrounds App project on iPadOS 26 I am building a Swift Playgrounds App project on iPad running iPadOS 26.0.1 using the latest version of Swift Playgrounds. I need Core Location access for a personal use plant location logging app. Setup: • App project (not a classic Playground) in Swift Playgrounds • Enabled ‘Core Location When in Use’ in the app capabilities settings • CLLocationManager with CLLocationManagerDelegate implemented • requestWhenInUseAuthorization() called from .onAppear in a SwiftUI view • startUpdatingLocation() called when authorization is granted in locationManagerDidChangeAuthorization The problem: The location permission prompt never appears when the app runs. The app does not appear in Settings → Privacy & Security → Location Services at all. No errors or crashes — the app simply never requests location access.…