ideviceinstaller
ideviceinstaller copied to clipboard
afc_file_open
hi, something awkward happended. when I run 'ideviceinstaller -u udid -i test.ipa' in my terminal, log shows below:
Copying 'XXX_ipa_path' to device... afc_file_open on 'PublicStaging/com.test.demo' failed!
how can I solve this? Thanks in advance
Facing same here
Me too
me too
Hi guys, full phone reset helped me to solve this issue/ Seems like something left in the phone storage for my application that can't be deleted from settings.
libimobile device failed to open the file /PublicStaging/com.test.demo on the ios device . In my case that was a directory and not a regular file. I solved it by deleting that directory with ios-deploy
In my case, and many others from what I read, this was caused by the disk being full. Remember that you can safely remove the ideviceinstaller staging folder, among other things.
rm -rf /private/var/mobile/Media/PublicStaging
libimobile device failed to open the file /PublicStaging/com.test.demo on the ios device . In my case that was a directory and not a regular file. I solved it by deleting that directory with ios-deploy
Could you please provide commands how you did it?
libimobile device failed to open the file /PublicStaging/com.test.demo on the ios device . In my case that was a directory and not a regular file. I solved it by deleting that directory with ios-deploy
Could you please provide commands how you did it?
Mounting the iPhone storage and then calling rm -rf would be optimal. Otherwise use ios-deploy --rm to delete files included within each directory and then use it on directories once they are empty. I wrote a script that listed all files, sorted by the number of slashes (/) decreasing and then called ios-deploy --rm on each of them. This way takes a long time though
libimobile device failed to open the file /PublicStaging/com.test.demo on the ios device . In my case that was a directory and not a regular file. I solved it by deleting that directory with ios-deploy
Please provide some more steps. what exactly have to delete? thanks