Guest User

Untitled

a guest
Oct 20th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. settings = {
  2. build = {
  3. neverStripDebugInfo = true
  4. },
  5. splashScreen =
  6. {
  7. ios = {
  8. enable = false
  9. },
  10. android = {
  11. enable = true,
  12. image = '[email protected]'
  13. }
  14. },
  15. orientation = {
  16. default = "landscapeRight",
  17. supported = { "landscapeRight", "landscapeLeft" }
  18. },
  19. excludeFiles =
  20. {
  21. iphone = { "Icon-*dpi.png", "*.bat", "*.ogg", "*.mp3", "*.wav", "*.m3u" },
  22. android = { "*@2x.png", "*@3x.png", "*.bat", "*.aac", "*.mp3", "*.wav", "*.m3u" }
  23. },
  24. plugins =
  25. {
  26. ["plugin.utf8"] = { publisherId = "com.coronalabs" },
  27. ["plugin.bit"] = { publisherId = "com.coronalabs" },
  28. ["plugin.openssl"] = { publisherId = "com.coronalabs" },
  29.  
  30. ["plugin.unityads"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, android=true } },
  31. ["plugin.facebook.v4a"] = { publisherId = "com.coronalabs" },
  32. ["plugin.gameanalytics_v2"] = { publisherId = "com.gameanalytics", supportedPlatforms = { iphone=true, android=true } },
  33. ["CoronaProvider.ads.vungle"] = { publisherId = "com.vungle" , supportedPlatforms = { iphone = true, android = true } },
  34. ["plugin.google.play.services"] = { publisherId = "com.coronalabs" },
  35. ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true } },
  36. ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true, ["iphone-sim"] = true } },
  37. ["plugin.applovin"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true, android = true, osx = true, ["win32-sim"] = true } },
  38. },
  39. iphone = {
  40. xcassets = "Images.xcassets",
  41. plist = {
  42. FacebookAppID = "[REMOVED]", --replace XXXXXXXXXX with your Facebook App ID
  43. CFBundleURLTypes =
  44. {
  45. { CFBundleURLSchemes = { "[REMOVED]", } } --replace XXXXXXXXXX with your Facebook App ID
  46. },
  47. NSAppTransportSecurity =
  48. {
  49. NSAllowsArbitraryLoads = true,
  50. NSExceptionDomains =
  51. {
  52. ["fbcdn.net"] =
  53. {
  54. NSIncludesSubdomains = true,
  55. NSExceptionRequiresForwardSecrecy = false,
  56. },
  57. ["facebook.com"] =
  58. {
  59. NSIncludesSubdomains = true,
  60. NSExceptionRequiresForwardSecrecy = false,
  61. },
  62. ["akamaihd.net"] =
  63. {
  64. NSIncludesSubdomains = true,
  65. NSExceptionRequiresForwardSecrecy = false,
  66. },
  67. },
  68. },
  69. LSApplicationQueriesSchemes =
  70. {
  71. "fb",
  72. "fbapi",
  73. "fbapi20130214",
  74. "fbapi20130410",
  75. "fbapi20140410",
  76. "fbapi20140116",
  77. "fbapi20150313",
  78. "fbapi20150629",
  79. "fbauth",
  80. "fbauth2",
  81. "fb-messenger-api",
  82. "fbshareextension",
  83. "fb-messenger-api20140430",
  84. },
  85. CFBundleDisplayName = "Case Clicker",
  86. CFBundleName = "Case Clicker",
  87. MinimumOSVersion = "8.0",
  88. UILaunchStoryboardName = "LaunchScreen",
  89. UIStatusBarHidden = true,
  90. UIPrerenderedIcon = true, -- set to false for "shine" overlay
  91. UIApplicationExitsOnSuspend = false, -- uncomment to quit app on suspend
  92. ITSAppUsesNonExemptEncryption = false,
  93. }
  94. },
  95. android =
  96. {
  97. largeHeap = true,
  98. facebookAppId = "[REMOVED]",
  99. googlePlayGamesAppId = "[REMOVED]",
  100. usesPermissions =
  101. {
  102. "com.android.vending.BILLING",
  103. "com.android.vending.CHECK_LICENSE"
  104. },
  105. },
  106. androidPermissions = {
  107. "android.permission.INTERNET",
  108. "android.permission.WRITE_EXTERNAL_STORAGE",
  109. "android.permission.ACCESS_NETWORK_STATE",
  110. },
  111. license =
  112. {
  113. google =
  114. {
  115. key = "[REMOVED]",
  116. policy = "serverManaged",
  117. },
  118. },
  119. }
Advertisement
Add Comment
Please, Sign In to add comment