Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 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 = true,
  19. image = "splash.png"
  20. },
  21.  
  22. --
  23. -- Android section
  24. --
  25. android =
  26. {
  27. usesPermissions =
  28. {
  29. "android.permission.INTERNET",
  30. },
  31. },
  32.  
  33. --
  34. -- iOS section
  35. --
  36. iphone =
  37. {
  38. xcassets = "Images.xcassets",
  39. plist =
  40. {
  41. UIStatusBarHidden = false,
  42. UILaunchStoryboardName = "LaunchScreen",
  43. },
  44. },
  45.  
  46. --
  47. -- Plugins section
  48. --
  49. plugins =
  50. {
  51. ["plugin.firebaseDatabase"] =
  52. {
  53. publisherId = "tech.scotth",
  54. },
  55. ["plugin.admob"] =
  56. {
  57. publisherId = "com.coronalabs"
  58. },
  59.  
  60.  
  61. },
  62.  
  63. --
  64. -- Project section
  65. --
  66. excludeFiles =
  67. {
  68. -- Exclude unnecessary files for each platform
  69. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  70. android = { "LaunchScreen.storyboardc", },
  71. },
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement