Advertisement
Guest User

Untitled

a guest
Sep 25th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 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. splashScreen =
  17. {
  18. enable = false
  19. },
  20.  
  21. --
  22. -- Android section
  23. --
  24. android =
  25. {
  26. usesPermissions =
  27. {
  28. "android.permission.INTERNET",
  29. "android.permission.CALL_PHONE",
  30. },
  31. },
  32.  
  33. --
  34. -- iOS section
  35. --
  36. iphone =
  37. {
  38. xcassets = "Images.xcassets",
  39. plist =
  40. {
  41. UIStatusBarHidden = true,
  42. UILaunchStoryboardName = "LaunchScreen",
  43. CFBundleIconFiles =
  44. {
  45. "icons/Icon-40.png",
  46. "icons/Icon-76.png",
  47. "icons/Icon-120.png",
  48. "icons/Icon-152.png",
  49. "icons/Icon-167.png",
  50. "icons/Icon-180.png",
  51. },
  52. NSAppTransportSecurity =
  53. {
  54. NSAllowsArbitraryLoads = true,
  55. },
  56. },
  57. },
  58.  
  59. --
  60. -- Plugins section
  61. --
  62. plugins =
  63. {
  64. ['plugin.qrscanner'] = {publisherId = 'com.spiralcodestudio'},
  65. ['plugin.utf8'] = {publisherId = 'com.coronalabs'},
  66. ['plugin.texttospeech'] = {publisherId = 'com.spiralcodestudio'},
  67. ["plugin.zip"] = {publisherId = "com.coronalabs"},
  68. ["plugin.nanosvg"] = {publisherId = "com.coronalabs"},
  69. ["plugin.deploy"] = {publisherId = "tech.scotth"},
  70. },
  71.  
  72. --
  73. -- Project section
  74. --
  75. excludeFiles =
  76. {
  77. -- Exclude unnecessary files for each platform
  78. ios = { "Icon.png", "Icon-*dpi.png", "_src"},
  79. android = { "Icon.png", "Icon-??.png", "Icon-???.png", "LaunchScreen.storyboardc", "_src"},
  80. },
  81. build =
  82. {
  83. neverStripDebugInfo = false,
  84. },
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement