Advertisement
Guest User

Untitled

a guest
Sep 7th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. settings =
  2. {
  3.  
  4.     orientation =
  5.     {
  6.         default = "portrait",
  7.     },
  8.  
  9.     plugins =
  10.     {
  11.         ["CoronaProvider.native.popup.social"] = { publisherId = "com.coronalabs" },
  12.     }, 
  13.  
  14.     android =
  15.     {
  16.         allowAppsReadOnlyAccessToFiles = true,
  17.         largeHeap = true,
  18.         usesPermissions =
  19.         {
  20.         "android.permission.INTERNET",
  21.             "android.permission.WRITE_EXTERNAL_STORAGE",
  22.             "android.permission.ACCESS_FINE_LOCATION",
  23.             "android.permission.ACCESS_COARSE_LOCATION",
  24.         "android.permission.ACCESS_NETWORK_STATE",
  25.         },
  26.     },
  27.    
  28.     iphone =
  29.     {
  30.         xcassets = "Images.xcassets",
  31.         plist =
  32.         {
  33.             UILaunchStoryboardName = "LaunchScreen",  -- Required!
  34.             UIStatusBarHidden = true,
  35.             CFBundleIdentifier = "com.learning.power",
  36.             NSPhotoLibraryUsageDescription = "This app would like to access the photo library.",
  37.             NSPhotoLibraryAddUsageDescription = "This app would like to add the photo library.",
  38.         },
  39.     },
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement