Advertisement
Guest User

Untitled

a guest
Mar 16th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. --
  2. -- For more information on build.settings see the Corona SDK Build 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.  
  13. default = "portrait",
  14. supported = { "portrait", },
  15. },
  16.  
  17. excludeFiles =
  18. {
  19. -- Include only the necessary icon files on each platform
  20. iphone = { "Icon-*dpi.png", },
  21. android = { "Icon.png", "Icon-Small-*.png", "Icon*@2x.png", },
  22. },
  23.  
  24. --
  25. -- iOS Section
  26. --
  27. iphone =
  28. {
  29. plist =
  30. {
  31. UIStatusBarHidden = false,
  32. UIPrerenderedIcon = true, -- set to false for "shine" overlay
  33. --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend
  34.  
  35. CFBundleIconFiles =
  36. {
  37. "Icon.png",
  38. "Icon@2x.png",
  39. "Icon-167.png",
  40. "Icon-60.png",
  41. "Icon-60@2x.png",
  42. "Icon-60@3x.png",
  43. "Icon-72.png",
  44. "Icon-72@2x.png",
  45. "Icon-76.png",
  46. "Icon-76@2x.png",
  47. "Icon-Small.png",
  48. "Icon-Small@2x.png",
  49. "Icon-Small@3x.png",
  50. "Icon-Small-40.png",
  51. "Icon-Small-40@2x.png",
  52. "Icon-Small-50.png",
  53. "Icon-Small-50@2x.png",
  54. },
  55. },
  56. },
  57.  
  58. --
  59. -- Android Section
  60. --
  61.  
  62. android =
  63. {
  64. usesPermissions =
  65. {
  66. "android.permission.INTERNET",
  67. "android.permission.ACCESS_NETWORK_STATE",
  68. "android.permission.ACCESS_COARSE_LOCATION",
  69. "android.permission.WRITE_EXTERNAL_STORAGE"
  70. },
  71. },
  72.  
  73. plugins =
  74. {
  75. ["plugin.appodeal"] =
  76. {
  77. publisherId = "com.coronalabs",
  78. supportedPlatforms = { android=true }
  79. },
  80. ["plugin.google.play.services"] =
  81. {
  82. publisherId = "com.coronalabs",
  83. supportedPlatforms = { android=true }
  84. },
  85. },
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement