Apple Healthkit and Watch Simulator

1.1k Views Asked by At

Is it possible to use and querying Healthkit through Iphone and Watch simulators?

Did a lot of search and only one mention in Xamarin Forum saying you can't, but nothing else.

Anybody could point out a link on that matter?

As of now the tests I've made on request authorization like this:

healthStore.requestAuthorization(toShare: writableTypes, read: readableTypes){ (success, error) in

        if(!success){
            print("Error \(error?.localizedDescription)")
        }

    }

Are resulting the above object error giving me "Missing com.apple.developer.healthkit entitlement."

And, yes, the entitlement is proper informed.

1

There are 1 best solutions below

3
On

Make sure the device accepted the HealthKit authorizations before you make a call to ask for the HealthKit data. Usually if you're asking for authorization it pops up immediately when the app is run (in the simulator or on device). I know if that has not been accepted before I try to use the Watch, I'll get the same error, etc.