Walking the path of a document directory to xcode startup scripts

I want to pass the location of the document (data) directory to a script that runs after assembly at the xcode target point.

Which environment variable should I use?

+6
source share
1 answer

How to create a sandbox directory AFTER the build is complete and the simulator starts, the environment does not have any knowledge about all the documents (sandbox folder). You can run a script in the background that checks the simulator dump folder to see which directory was created immediately after the application started.

+3
source

Source: https://habr.com/ru/post/952690/


All Articles