Advertisement
Guest User

Untitled

a guest
Aug 4th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 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. "android.permission.WRITE_EXTERNAL_STORAGE",
  25. },
  26. },
  27.  
  28. --
  29. -- iOS section
  30. --
  31. iphone =
  32. {
  33. xcassets = "Images.xcassets",
  34. plist =
  35. {
  36. UIStatusBarHidden = false,
  37. UILaunchStoryboardName = "LaunchScreen",
  38. },
  39. },
  40.  
  41. --
  42. -- Plugins section
  43. --
  44. plugins =
  45. {
  46. ["CoronaProvider.native.popup.social"] =
  47. {
  48. publisherId = "com.coronalabs"
  49. },
  50. ["CoronaProvider.native.popup.activity"] =
  51. {
  52. publisherId = "com.coronalabs"
  53. },
  54. },
  55.  
  56. --
  57. -- Project section
  58. --
  59. excludeFiles =
  60. {
  61. -- Exclude unnecessary files for each platform
  62. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  63. android = { "LaunchScreen.storyboardc", },
  64. },
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement