Does anyone know the proper way of specifying multiple paths in an Entitlement file for a single key? I need to have read-write access to the file /var/run/usbmuxd and read-write access to the directory /var/db/lockdown/
I got the key com.apple.security.temporary-exception.files.absolute-path.read-write from this section of Apple's page on Entitlements: https://developer.apple.com/library...s.html#//apple_ref/doc/uid/TP40011195-CH5-SW7
For a value, I put down
With a semicolon separating the different paths, but I wasn't sure if that was correct or not.
I also tried using an array, instead.
The framework I'm using (https://github.com/samdmarshall/SDMMobileDevice) said I needed read-write access to those paths, but the errors it's throwing at me aren't particularly clear on whether it's properly getting access to the paths it needs or not.
Here's the error message:
lockssl_handshake: SSL handshake fatal lower level error 1: (null).
I got the key com.apple.security.temporary-exception.files.absolute-path.read-write from this section of Apple's page on Entitlements: https://developer.apple.com/library...s.html#//apple_ref/doc/uid/TP40011195-CH5-SW7
For a value, I put down
Code:
/var/run/usbmuxd;/var/db/lockdown/
With a semicolon separating the different paths, but I wasn't sure if that was correct or not.
I also tried using an array, instead.
The framework I'm using (https://github.com/samdmarshall/SDMMobileDevice) said I needed read-write access to those paths, but the errors it's throwing at me aren't particularly clear on whether it's properly getting access to the paths it needs or not.
Here's the error message:
lockssl_handshake: SSL handshake fatal lower level error 1: (null).