Skip to content

Instantly share code, notes, and snippets.

@attilam
Created February 19, 2013 08:39
Show Gist options
  • Save attilam/4984087 to your computer and use it in GitHub Desktop.
Save attilam/4984087 to your computer and use it in GitHub Desktop.
Unity3D iOS: Auto add 'Application supports iTunes file sharing' to Info.plist
#!/bin/bash
plist=$1"/Info.plist"
/usr/libexec/PlistBuddy -c "Add :UIFileSharingEnabled bool true" $plist
@attilam
Copy link
Author

attilam commented Feb 19, 2013

(put this script into Assets/Editor/PostprocessBuildPlayer)
based on [http://forum.unity3d.com/threads/138828-overwritten-info.plist]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment