Advertisement
ProGGG

Untitled

Dec 11th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 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.  
  9. orientation =
  10. {
  11. -- Supported values for orientation:
  12. -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  13.  
  14. default = "portrait",
  15. supported = { "portrait", }
  16. },
  17.  
  18.  
  19. excludeFiles =
  20. {
  21. -- Include only the necessary icon files on each platform
  22. iphone = { "Icon-*dpi.png", },
  23. android = { "Icon.png", "Icon-Small*.png", "Icon*@2x.png", "Icon*@2x.png", "Icon*@3x.png",
  24. "Icon-Amazon.png", "iTunes*.png", "Icon*.ico", "upload.png",
  25. "Icon-16.png", "Icon-24.png", "Icon-32.png", "Icon-40.png", "Icon-60.png",
  26. "Icon-64.png", "Icon-72.png", "Icon-120.png", "Icon-152.png", },
  27. },
  28.  
  29.  
  30. plugins =
  31. {
  32. --["plugin.utf8"] =
  33. --{
  34. -- publisherId = "com.coronalabs",
  35. --},
  36. -- для appodeal
  37. --["plugin.appodeal"] =
  38. --{
  39. -- publisherId = "com.coronalabs",
  40. -- supportedPlatforms = { android=true }
  41. --},
  42. --["plugin.google.play.services"] =
  43. --{
  44. -- publisherId = "com.coronalabs",
  45. -- supportedPlatforms = { android=true }
  46. --},
  47. ["plugin.gpgs.v2"] = {
  48. publisherId = "com.coronalabs",
  49. supportedPlatforms = { ["android"] = true, }
  50. },
  51. --["plugin.firebaseAnalytics"] =
  52. --{
  53. -- publisherId = "tech.scotth",
  54. -- supportedPlatforms = { android=true }
  55. --},
  56. --["plugin.firebaseDatabase"] =
  57. --{
  58. -- publisherId = "tech.scotth",
  59. -- supportedPlatforms = { android=true }
  60. --},
  61.  
  62. -- Base
  63. --['plugin.appodeal.base'] = { publisherId = 'com.coronalabs' },
  64. --['plugin.appodeal.GoogleAdMob'] = { publisherId = 'com.coronalabs' },
  65. --['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },
  66. },
  67.  
  68.  
  69. --
  70. -- Android Section
  71. --
  72.  
  73. android =
  74. {
  75. applicationChildElements =
  76. {
  77. [[
  78. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  79. android:value="ca-app-pub-6392411087117914~5103519653"/> -- replace with your app id. See: https://goo.gl/fQ2neu
  80. ]],
  81. },
  82.  
  83. usesPermissions =
  84. {
  85. "android.permission.INTERNET",
  86. "android.permission.ACCESS_NETWORK_STATE",
  87. -- для appodeal
  88. "android.permission.ACCESS_COARSE_LOCATION",
  89. "android.permission.WRITE_EXTERNAL_STORAGE",
  90. "com.google.android.c2dm.permission.RECEIVE",
  91. },
  92. intentFilters = {
  93. {
  94. }
  95. },
  96. useGoogleServicesJson = true,
  97. },
  98.  
  99.  
  100. window = {
  101. defaultViewWidth = 400,
  102. defaultViewHeight = 600,
  103. resizable = true,
  104. titleText = {
  105. default = "Синонимы",
  106. }
  107. },
  108.  
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement