Skip to content

Instantly share code, notes, and snippets.

View housei's full-sized avatar

Yoshida Housei housei

  • CyberAgent, Inc.
  • Tokyo/Japan
View GitHub Profile
@keijiro
keijiro / PostprocessBuildPlayer
Created September 26, 2011 11:24
PostprocessBuildPlayer for Unity iOS: modifies Info.plist to use Facebook URL-scheme
#!/usr/bin/env python
import sys, os.path
install_path = sys.argv[1]
target_platform = sys.argv[2]
if target_platform != "iPhone": sys.exit()
info_plist_path = os.path.join(install_path, 'Info.plist')