Advertisement
lavalevel

build settings for ads

Dec 6th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.12 KB | None | 0 0
  1. settings =
  2. {
  3.     orientation =
  4.     {
  5.         default = "portrait",
  6.         supported = { "portrait", "landscapeLeft", "landscapeRight","portraitUpsideDown"}
  7.     },
  8.     iphone =
  9.     {
  10.         plist =
  11.         {
  12.             UIApplicationExitsOnSuspend=true,
  13.             UIHiddenStatusBar= true,
  14.             CFBundleIconFile = "Icon.png",
  15.             CFBundleIconFiles =
  16.             {
  17.                 "Icon.png",
  18.                 "[email protected]",
  19.                 "Icon-60.png",
  20.                 "[email protected]",
  21.                 "Icon-72.png",
  22.                 "[email protected]",
  23.                 "Icon-76.png",
  24.                 "[email protected]",
  25.                 "Icon-Small.png",
  26.                 "[email protected]",
  27.                 "Icon-Small-40.png",
  28.                 "[email protected]",
  29.                 "Icon-Small-50.png",
  30.                 "[email protected]",
  31.             },
  32.         },
  33.  
  34.  
  35.  
  36.  
  37.        plugins =
  38.        {
  39.           --key is the name passed to Lua's 'require()'
  40.           ["CoronaProvider.ads.iads"] =
  41.           {
  42.           --required
  43.           publisherId = "com.coronalabs",
  44.           supportedPlatforms = { iphone=true, ["iphone-sim"]=true },
  45.           },
  46.        },
  47.  
  48.  
  49.  
  50.     },
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement