Advertisement
Rakoonic

build settings for facebook app

Sep 12th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. settings = {
  2.     orientation =
  3.     {
  4.         default = "landscapeRight",
  5.         supported =
  6.         {
  7.             "landscapeLeft", "landscapeRight"
  8.         }
  9.     },
  10.     android =
  11.     {
  12.         largeHeap       = true,
  13.         usesPermissions =
  14.         {
  15.             "android.permission.INTERNET",
  16.         },
  17.     },
  18.     iphone =
  19.     {
  20.         plist =
  21.         {
  22.             UIStatusBarHidden           = true,
  23.             UIPrerenderedIcon           = true,
  24.             CFBundleDisplayName         = "Blah",
  25.             CFBundleIconFile            = "Icon.png",
  26.             CFBundleIconFiles           = {
  27.                 "Icon.png" ,
  28.                 "Icon@2x.png" ,
  29.                 "Icon-72.png"
  30.             },
  31.             UIApplicationExitsOnSuspend = false,
  32.             FacebookAppID               = "XXXXXXXXXXXXX",
  33.             CFBundleURLTypes            =
  34.             {
  35.                 {
  36.                     CFBundleURLSchemes =
  37.                     {
  38.                         "fbXXXXXXXXXXXXX",  -- replace XXXXXXXXX with your facebook appId
  39.                     }
  40.                 }
  41.             }
  42.         },
  43.     },
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement