Guest User

Untitled

a guest
Aug 20th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. --
  2. -- For more information on build.settings, see the Project Build Settings 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. default = "portrait",
  13. supported = { "portrait", },
  14. },
  15.  
  16. --
  17. -- Android section
  18. --
  19. android =
  20. {
  21. applicationChildElements =
  22. {
  23. [[
  24. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  25. android:value="ca-app-pub-4700703729931997~5537393523"/> -- replace with your app id. See: https://goo.gl/fQ2neu
  26. ]],
  27. },
  28. usesPermissions =
  29. {
  30. "android.permission.INTERNET",
  31. "android.permission.GET_ACCOUNTS",
  32. "android.permission.ACCESS_COARSE_LOCATION",
  33. "android.permission.ACCESS_FINE_LOCATION",
  34. "android.permission.RECEIVE_BOOT_COMPLETED",
  35. "android.permission.VIBRATE",
  36. "android.permission.WRITE_EXTERNAL_STORAGE"
  37. },
  38. },
  39.  
  40. --
  41. -- iOS section
  42. --
  43. iphone =
  44. {
  45. xcassets = "Images.xcassets",
  46. plist =
  47. {
  48. UIStatusBarHidden = false,
  49. UILaunchStoryboardName = "LaunchScreen",
  50. NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
  51. UIBackgroundModes = { "remote-notification" },
  52. CFBundleDisplayName = "Сонники - Толкование снов",
  53. CFBundleName = "com.elitsolutions.sonniki",
  54. },
  55. },
  56.  
  57. --
  58. -- Plugins section
  59. --
  60. plugins =
  61. {
  62. ["CoronaProvider.native.popup.social"] =
  63. {
  64. publisherId = "com.coronalabs"
  65. },
  66. ["plugin.utf8"] =
  67. {
  68. publisherId = "com.coronalabs"
  69. },
  70. ["plugin.firebaseAnalytics"] = {
  71. publisherId = "tech.scotth",
  72. },
  73. ["plugin.notifications.v2"] =
  74. {
  75. publisherId = "com.coronalabs"
  76. },
  77. ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' },
  78. ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' },
  79. ['plugin.appodeal.beta.AmazonAds'] = { publisherId = 'com.coronalabs' },
  80. ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' },
  81. ['plugin.appodeal.beta.Appnext'] = { publisherId = 'com.coronalabs' },
  82. ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' },
  83. ['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' },
  84. ['plugin.appodeal.beta.Flurry'] = { publisherId = 'com.coronalabs' },
  85. ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' },
  86. ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' },
  87. ['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' },
  88. ['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' },
  89. ['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' },
  90. ['plugin.appodeal.beta.Ogury'] = { publisherId = 'com.coronalabs' },
  91. ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },
  92. ['plugin.appodeal.beta.Tapjoy'] = { publisherId = 'com.coronalabs' },
  93. ['plugin.appodeal.beta.TwitterMoPub'] = { publisherId = 'com.coronalabs' },
  94. ['plugin.appodeal.beta.Unity'] = { publisherId = 'com.coronalabs' },
  95. ['plugin.appodeal.beta.Vungle'] = { publisherId = 'com.coronalabs' },
  96. ['plugin.appodeal.beta.Yandex'] = { publisherId = 'com.coronalabs' },
  97. },
  98.  
  99. --
  100. -- Project section
  101. --
  102. excludeFiles =
  103. {
  104. -- Exclude unnecessary files for each platform
  105. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  106. android = { "LaunchScreen.storyboardc", },
  107. },
  108. }
Advertisement
Add Comment
Please, Sign In to add comment