Advertisement
Hariton

Untitled

Dec 28th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. --
  2. -- For more information on build.settings see the Corona SDK Build Guide at:
  3. -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
  4. --
  5.  
  6. settings =
  7. {
  8. splashScreen =
  9. {
  10. enable = false
  11. },
  12. orientation =
  13. {
  14. default = "portrait",
  15. supported = { "portrait" }
  16. },
  17. --
  18. -- Android section
  19. --
  20. android =
  21. {
  22. usesPermissions =
  23. {
  24. "android.permission.INTERNET",
  25. "android.permission.RECEIVE_BOOT_COMPLETED",
  26. },
  27. },
  28. iphone =
  29. {
  30. plist =
  31. {
  32. CFBundleIconFiles =
  33. {
  34. "Icon.png",
  35. "Icon@2x.png",
  36. "Icon-60.png",
  37. "Icon-60@2x.png",
  38. "Icon-60@3x.png",
  39. "Icon-72.png",
  40. "Icon-72@2x.png",
  41. "Icon-76.png",
  42. "Icon-76@2x.png",
  43. "Icon-Small.png",
  44. "Icon-Small@2x.png",
  45. "Icon-Small@3x.png",
  46. "Icon-Small-40.png",
  47. "Icon-Small-40@2x.png",
  48. "Icon-Small-50.png",
  49. "Icon-Small-50@2x.png",
  50. },
  51. },
  52. },
  53.  
  54. plugins = {
  55. ['plugin.ui_framework'] = {publisherId = 'com.skyjoy'},
  56. ['plugin.app_framework'] = {publisherId = 'maciej.czekala'},
  57. ["plugin.notifications.v2"] = {publisherId = "com.coronalabs"},
  58.  
  59. }
  60.  
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement