My app clip needs to access the camera so need to redirect users to the settings if access is denied, however the regular method of calling
let url = UIApplication.openSettingsURLString;
if let appSettingsURL = URL(string: url) {
UIApplication.shared.open(appSettingsURL)
}
doesn't seem to take app clips into account and just lands people in the base Settings page. It works fine if directly deploying to a device, but when testing via TestFlight it's installed under the AppClips subsection instead.
Is there a way to get users directly into Settings -> AppClips -> AppName?