Were you able to resolve this issue ?
Post
Replies
Boosts
Views
Activity
This worked. Thanks a lot.
How do I access CloudKit from Siri Intent Handler?
For example, I want to tell Siri to log some value, store it to Core Data and also trigger a CloudKit operation to save to iCloud.
Only the Core Data persistence works via App Group. But CloudKit operation is not triggered.
Also, when I run the Siri Intent from Xcode (Debug) execution on my device, the CloudKit operation is triggered. But the same thing doesn't work in Release(install the app on my device and tell Siri).
From my Testing, ckSession itself is ckWebAuthToken
Encode and append the ckSession string that you received to future requests.
To URL encode the ckSession string, replace '+' with '%2B', '/' with '%2F', and '=' with '%3D'. For example, send a request to get the current user by appending the ckWebAuthToken string.
My UI tests on iOS require few commands to be executed on host Mac Terminal during execution. I am trying to achieve this via Bonjour Services where my UI Test on iOS will connect to the Bonjour service on host Mac and send commands to be executed.
Is there any workaround to run Bonjour services within UI Test Bundle ?