I am looking into using the location push service extension for iOS 15 enterprise app to display the current location of other service technicians. However, when I try to request the entitlement, I get "You're not eligible to make this request, even though I am the Account Holder for this Enterprise Account.
If I try to request using my personal developer account, I can request the entitlement.
https://developer.apple.com/contact/request/location-push-service-extension/
https://developer.apple.com/documentation/corelocation/cllocationmanager/creating_a_location_push_service_extension
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I installed the Scrumdinger tutorial app using the links at: https://developer.apple.com/tutorials/app-dev-training/getting-started-with-scrumdinger
The ding sound does not play on my iPhone, the relevant code is:
import Foundation
import AVFoundation
extension AVPlayer {
static let sharedDingPlayer: AVPlayer = {
guard let url = Bundle.main.url(forResource: "ding", withExtension: "wav") else { fatalError("Failed to find sound file.") }
return AVPlayer(url: url)
}()
}
player.seek(to: .zero)
player.play()
If I create a separate sample app with just this code it does play the sound. However the sample Scrumdinger app does not play the "ding" sound.