Guest User

Untitled

a guest
Dec 20th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 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. build =
  9. {
  10. neverStripDebugInfo = true,
  11. },
  12.  
  13. orientation =
  14. {
  15. -- Supported values for orientation:
  16. -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  17. default = "landscapeLeft",
  18. supported = { "landscapeLeft", "landscapeRight"},
  19. },
  20.  
  21. splashScreen =
  22. {
  23. ios = {
  24. enable = false
  25. },
  26. android = {
  27. enable = false
  28. }
  29. },
  30.  
  31. --
  32. -- Android section
  33. --
  34. android =
  35. {
  36. usesPermissions =
  37. {
  38. "android.permission.INTERNET",
  39. "android.permission.ACCESS_NETWORK_STATE",
  40. "com.android.vending.BILLING",
  41. },
  42. largeHeap = true,
  43. },
  44.  
  45. --
  46. -- iOS section
  47. --
  48. iphone =
  49. {
  50. xcassets = "Images.xcassets",
  51. plist =
  52. {
  53. UIStatusBarHidden = false,
  54. UILaunchStoryboardName = "LaunchScreen",
  55. },
  56. },
  57.  
  58. --
  59. -- Plugins section
  60. --
  61. plugins =
  62. {
  63. ["plugin.admob"] =
  64. {
  65. publisherId = "com.coronalabs"
  66. },
  67. ["plugin.googleAnalytics"] =
  68. {
  69. publisherId = "com.coronalabs"
  70. },
  71. ["plugin.google.iap.v3"] =
  72. {
  73. publisherId = "com.coronalabs"
  74. },
  75. },
  76.  
  77. --
  78. -- Project section
  79. --
  80. excludeFiles =
  81. {
  82. -- Exclude unnecessary files for each platform
  83. ios = { "Icon.png", "Icon-*dpi.png", "iconosOriginales"},
  84. android = { "Icon.png", "Icon-??.png", "Icon-???.png", "LaunchScreen.storyboardc", "intro/images", "iconosOriginales" },
  85. },
  86. }
Add Comment
Please, Sign In to add comment