Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1.  
  2. settings = {
  3.  
  4. orientation = {
  5. default = "portrait",
  6. supported = { "portrait", "portraitUpsideDown" }
  7. },
  8.  
  9. splashScreen =
  10. {
  11. enable = true,
  12. image = "img/splash_tiles.png"
  13. },
  14.  
  15. android = {
  16. usesPermissions = {
  17. "android.permission.VIBRATE",
  18. "android.permission.INTERNET",
  19. "android.permission.ACCESS_NETWORK_STATE",
  20. "com.android.vending.CHECK_LICENSE"
  21. },
  22. googlePlayGamesAppId = "1056057120475",
  23.  
  24. applicationChildElements =
  25. {
  26. [[
  27. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  28. android:value="ca-app-pub-XXXXX"/>
  29. ]],
  30. }
  31. },
  32.  
  33. plugins = {
  34.  
  35. ["plugin.admob"] =
  36. {
  37. publisherId = "com.coronalabs",
  38. --supportedPlatforms = { iphone=true, android=true, ["android-kindle"]=true }
  39. },
  40.  
  41. ["plugin.gpgs.v2"] =--
  42. {
  43. publisherId = "com.coronalabs",
  44. supportedPlatforms = { android=true }
  45. },
  46.  
  47. ["plugin.zip"] =
  48. {
  49. publisherId = "com.coronalabs"
  50. },
  51. },
  52.  
  53. iphone = {
  54. xcassets = "Images.xcassets",
  55. plist =
  56. {
  57. NSAppTransportSecurity =
  58. {
  59. NSExceptionDomains =
  60. {
  61. ["jaguarstds.com"] =
  62. {
  63. NSIncludesSubdomains = true,
  64. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true
  65. },
  66.  
  67. ["igrec.ca"] =
  68. {
  69. NSIncludesSubdomains = true,
  70. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true
  71. },
  72.  
  73. ["api.wordnik.com"] =
  74. {
  75. NSIncludesSubdomains = true,
  76. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true
  77. },
  78.  
  79. ["46.101.164.145"] =
  80. {
  81. NSIncludesSubdomains = true,
  82. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
  83. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true
  84. },
  85. },
  86.  
  87. NSAllowsArbitraryLoads = true,
  88. },
  89.  
  90. CFBundleLocalizations = {
  91. "en", --English
  92. "es", --Spanish
  93. "it", --Italian
  94. "de", --German
  95. "fr", --French
  96. "pt", --Portuguese
  97. "nl", --Dutch
  98. "no", --Norwegian
  99. "gr",
  100. "ro",
  101. "uk","gb",
  102. },
  103. CFBundleDisplayName = "Word Master",
  104. CFBundleName = "Word Master",
  105. UILaunchStoryboardName = "LaunchScreen",
  106. UIPrerenderedIcon = true,
  107. UIStatusBarHidden = true,
  108. },
  109. },
  110.  
  111. excludeFiles = {
  112. all = {
  113. ".git/*",
  114. ".idea/*",
  115. "cloud_script/*",
  116. "Profiler.lua",
  117. },
  118. iphone = { "Icon-*dpi.png", "IconNotificationDefault-*.png" },
  119. android = {
  120. "Icon.png",
  121. "Icon*@2x.png",
  122. "Icon*@3x.png",
  123. "Icon-Small*.png",
  124. "Icon-60.png",
  125. "Icon-72.png",
  126. "Icon-76.png",
  127. "Default*.png",
  128. }
  129. },
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement