Created
February 19, 2013 08:39
-
-
Save attilam/4984087 to your computer and use it in GitHub Desktop.
Unity3D iOS: Auto add 'Application supports iTunes file sharing' to Info.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
plist=$1"/Info.plist" | |
/usr/libexec/PlistBuddy -c "Add :UIFileSharingEnabled bool true" $plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(put this script into Assets/Editor/PostprocessBuildPlayer)
based on [http://forum.unity3d.com/threads/138828-overwritten-info.plist]