Guest User

Untitled

a guest
Jul 22nd, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. --
  2. -- For more information on build.settings, see the Project Build Settings guide at:
  3. -- https://docs.coronalabs.com/guide/distribution/buildSettings
  4. --
  5.  
  6. settings =
  7. {
  8. orientation =
  9. {
  10. -- Supported values for orientation:
  11. -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  12. default = "portrait",
  13. supported = { "portrait", },
  14. },
  15.  
  16. --
  17. -- Android section
  18. --
  19. android =
  20. {
  21. usesPermissions =
  22. {
  23. "android.permission.INTERNET",
  24. },
  25. },
  26.  
  27. --
  28. -- iOS section
  29. --
  30. iphone =
  31. {
  32. xcassets = "Images.xcassets",
  33. plist =
  34. {
  35. UIStatusBarHidden = false,
  36. UILaunchStoryboardName = "LaunchScreen",
  37. },
  38. },
  39.  
  40. --
  41. -- Plugins section
  42. --
  43. plugins =
  44. {
  45.  
  46. },
  47.  
  48. --
  49. -- Project section
  50. --
  51. excludeFiles =
  52. {
  53. -- Exclude unnecessary files for each platform
  54. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  55. android = { "LaunchScreen.storyboardc", },
  56. },
  57. }
Add Comment
Please, Sign In to add comment