Created
July 17, 2013 00:46
-
-
Save rbreve/6016669 to your computer and use it in GitHub Desktop.
This file contains 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
settings = | |
{ | |
orientation = | |
{ | |
default = "portrait", | |
supported = { "portrait" } | |
}, | |
android = | |
{ | |
usesPermissions = | |
{ | |
"android.permission.INTERNET", | |
}, | |
}, | |
iphone = | |
{ | |
plist = | |
{ | |
CFBundleIconFile = "Icon.png", | |
CFBundleIconFiles = | |
{ | |
"Icon.png", | |
"[email protected]", | |
"Icon-72.png", | |
"[email protected]", | |
}, | |
UIApplicationExitsOnSuspend = false, -- must be false for single sign-on to work | |
FacebookAppID = "9999999999999", | |
CFBundleURLTypes = | |
{ | |
{ | |
CFBundleURLSchemes = | |
{ | |
"fb9999999999999", -- replace XXXXXXXXX with your facebook appId | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment