Advertisement
Hendrix000007

build.settings file iOS and Android

Oct 28th, 2013
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | None | 0 0
  1. settings =
  2. {
  3.         orientation =
  4.                     {
  5.                     default = "portrait",
  6.                     supported = {"portrait"},
  7.                     },
  8.         iphone =
  9.             {
  10.                     plist =
  11.                 {  
  12.                     UIApplicationExitsOnSuspend = false,
  13.                         CFBundleURLTypes =
  14.                             {
  15.                                 {
  16.                                     CFBundleURLSchemes =
  17.                                     {
  18.                                         "fb578055255565164",
  19.                                     }
  20.                                 }
  21.                             },
  22.                             CFBundleIdentifier = "org.3claws.memorytwister",
  23.                             CFBundleIconFile = "Icon.png",
  24.                             CFBundleIconFiles =
  25.                                     {
  26.                                     "Icon.png",
  27.                                     "[email protected]",
  28.                                     "Icon-72.png",
  29.                                     --"Icon-big.png",
  30.                                    --"Icon-med.png",
  31.                                     },
  32.                             UIAppFonts =
  33.                                     {
  34.                                     "SuperMarioGalaxy.ttf"
  35.                                     }
  36.                   },
  37.  
  38.            },
  39.         android =
  40.            {
  41.         usesPermissions =
  42.                 {
  43.                 "android.permission.INTERNET",
  44.                 },
  45.            },
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement