My software has permission to show vital notifications (distant and native). The applying has logic configured to show vital notifications at a sure interval if the appliance is within the background
Log.i(">noti #(i) subsequent (i * self.preEpisodeInterval)s")
self.scheduleLocalNoti(
title: LanguageHelper.getTranslationByKey(LanguageKey.ALARM) ?? "",
physique: information.preEpisodeWarnMessage ?? "",
isCritical: true,
timeInterval: TimeInterval(i * self.preEpisodeInterval),
soundName: self.preAlarmModel?.information?.preEpisodeTone ?? "melodie.wav",
userInfo: [MotionTrackingManager.LOCAL_NOTI_PREALARM_USERINFO: ""]
)
personal func scheduleLocalNoti(title: String,
physique: String,
isCritical: Bool = false,
timeInterval: TimeInterval = 0,
soundName: String? = nil,
userInfo: [AnyHashable: Any]? = nil) {
let content material = UNMutableNotificationContent()
content material.title = title
content material.physique = physique
if isCritical {
if soundName != nil {
let notiSound = UNNotificationSoundName(rawValue: soundName!)
content material.sound = UNNotificationSound.criticalSoundNamed(notiSound, withAudioVolume: 1.0)
} else {
content material.sound = UNNotificationSound.defaultCriticalSound(withAudioVolume: 1.0)
}
} else {
if soundName != nil {
let notiSound = UNNotificationSoundName(rawValue: soundName!)
content material.sound = UNNotificationSound(named: notiSound)
} else {
content material.sound = UNNotificationSound.default
}
}
if userInfo != nil {
content material.userInfo = userInfo!
}
// Create the set off
let set off = UNTimeIntervalNotificationTrigger(timeInterval: timeInterval + 1, repeats: false)
let uuidString = UUID().uuidString
Log.i("Schedule native noti for: (timeInterval + 1) with uuid: (uuidString)")
// Create the request
let request = UNNotificationRequest(
identifier: uuidString,
content material: content material,
set off: set off
)
// Schedule the request with the system.
let notificationCenter = UNUserNotificationCenter.present()
notificationCenter.add(request) { error in
if error != nil {
// Deal with any errors.
Log.e("errr: (String(describing: error?.localizedDescription))")
}
}
}
The applying additionally has logic that requires geolocation monitoring with the Background Modes Location replace
mark in Signing & Capabilities
. If permission to trace geolocation is denied, the native notification isn’t displayed (with distant ones, it nonetheless works accurately).
What’s additionally fascinating: this ONLY occurs with builds in testFlight/appStore. The discharge construct on the emulator instantly from XCode works accurately and continues to show the notification even when entry to geolocation is denied
How can geolocation have an effect on the show of native vital notifications?