WatchOS Fall Detection

I am trying to use the Fall Detection API to handle fall event, but I keep getting : [Fall] Error fetching most recent fall event: 111
I am using CMFallDetectionManager with delegate

The call back like the one below is not happening, any idea why?

How to simulate fall using the Watch Series 6 simulator?

func fallDetectionManager(_ fallDetectionManager: CMFallDetectionManager, didDetect event: CMFallDetectionEvent, completionHandler handler: @escaping () -> Void) {
    logger.debug("Fall Event Detected")
}
CMFallDetectionManager requires an entitlement from Apple. Have you applied for it at https://developer.apple.com/contact/request/fall-detection-api and have been granted the entitlement?

If you have, your app and/or provisioning profile may not be configured correctly.

@dkam how you solve the issue? my watch app get crash on launch even I have added key in extension plist

WatchOS Fall Detection
 
 
Q