Post-install, how do I copy a config file (to set some logging parameters in my particular case) to my iOS application's data directory?
Or, relatedly, how do I copy a data file from my app's data directory for me to examine for debugging purposes?
Ideally, I'd like to use the USB connection that I already have set up for debugging. And without having to write my own file transfer manager that ships in my application.
I'm more or less looking for the iOS equivalent of Android's adb push
and adb pull
.