Advertisement
Hendrix000007

config.settings

Mar 7th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. -- cpmgen build.settings
  2. settings =
  3. {
  4.     androidPermissions =
  5.     {
  6.         -- Permission to access the GPS.
  7.         "android.permission.ACCESS_FINE_LOCATION",
  8.  
  9.         -- Permission to retrieve current location from WiFi or cellular service.
  10.         "android.permission.ACCESS_COARSE_LOCATION",
  11.     }, 
  12.     orientation =
  13.     {
  14.         default ="portrait",
  15.         content = "portrait",
  16.         supported =
  17.         {
  18.             "portrait"
  19.         }
  20.     },
  21.     iphone = {
  22.         plist = {
  23.             UIApplicationExitsOnSuspend = false,
  24.             CFBundleURLTypes =
  25.             {
  26.                 {
  27.                     CFBundleURLSchemes =
  28.                     {
  29.                         "fb342224545897895",
  30.                     }
  31.                 }
  32.             },                      
  33.             CFBundleIdentifier = "org.3claws.maincrowbuster",
  34.             CFBundleIconFile = "Icon.png",
  35.             CFBundleIconFiles = {
  36.                                     "Icon.png",
  37.                                     "[email protected]",
  38.                                     "Icon-72.png"
  39.  
  40.             },             
  41.         },
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement