Advertisement
Guest User

Untitled

a guest
Nov 27th, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 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. usesPermissions =
  22. {
  23. "android.permission.INTERNET",
  24. "android.permission.GET_ACCOUNTS",
  25. "android.permission.ACCESS_COARSE_LOCATION",
  26. "android.permission.ACCESS_FINE_LOCATION",
  27. "android.permission.RECEIVE_BOOT_COMPLETED",
  28. "android.permission.VIBRATE",
  29. "android.permission.WRITE_EXTERNAL_STORAGE"
  30. },
  31. applicationChildElements =
  32. {
  33. [[
  34. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  35. android:value="ca-app-pub-000000-00000"/>
  36. ]],
  37. [[
  38. <meta-data android:name="com.google.firebase.messaging.default_notification_icon"
  39. android:resource="@drawable/corona_statusbar_icon_default"/>
  40. ]],
  41. },
  42. strings =
  43. {
  44.  
  45. ["google_app_id"]= "1:0000:android:00000"
  46. },
  47. useGoogleServicesJson = true,
  48. },
  49.  
  50. --
  51. -- iOS section
  52. --
  53. iphone =
  54. {
  55. xcassets = "Images.xcassets",
  56. plist =
  57. {
  58. GADApplicationIdentifier = "ca-app-pub-00000~0000",
  59. UIStatusBarHidden = false,
  60. UILaunchStoryboardName = "LaunchScreen",
  61. NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
  62. UIBackgroundModes = { "remote-notification" },
  63. FirebaseAppDelegateProxyEnabled = false,
  64. CFBundleDisplayName = "Permainan Peribahasa",
  65. CFBundleName = "mybundlename",
  66. NSLocationAlwaysUsageDescription = "Ads code requires location data to show more related ad",
  67. NSBluetoothAlwaysUsageDescription = "This app would like to access bluetooth.",
  68. },
  69. },
  70.  
  71. --
  72. -- Plugins section
  73. --
  74. plugins =
  75. {
  76. ["plugin.utf8"] =
  77. {
  78. publisherId = "com.coronalabs"
  79. },
  80. ["plugin.gpgs.v2"] = {
  81. publisherId = "com.coronalabs",
  82. supportedPlatforms = { ["android"] = true, }
  83. },
  84. ["plugin.notifications.v2"] =
  85. {
  86. publisherId = "com.coronalabs"
  87. },
  88. ["plugin.firebaseAnalytics"] = {
  89. publisherId = "tech.scotth",
  90. },
  91. ["CoronaProvider.native.popup.social"] =
  92. {
  93. publisherId = "com.coronalabs"
  94. },
  95. ["CoronaProvider.native.popup.activity"] =
  96. {
  97. publisherId = "com.coronalabs",
  98. supportedPlatforms = { iphone=true }
  99. },
  100. ['plugin.appodeal.base'] = { publisherId = 'com.coronalabs' },
  101. ['plugin.appodeal.AdColony'] = { publisherId = 'com.coronalabs' },
  102. ['plugin.appodeal.AmazonAds'] = { publisherId = 'com.coronalabs' },
  103. ['plugin.appodeal.AppLovin'] = { publisherId = 'com.coronalabs' },
  104. ['plugin.appodeal.Appnext'] = { publisherId = 'com.coronalabs' },
  105. ['plugin.appodeal.Chartboost'] = { publisherId = 'com.coronalabs' },
  106. ['plugin.appodeal.FacebookAudience'] = { publisherId = 'com.coronalabs' },
  107. ['plugin.appodeal.Flurry'] = { publisherId = 'com.coronalabs' },
  108. ['plugin.appodeal.GoogleAdMob'] = { publisherId = 'com.coronalabs' },
  109. ['plugin.appodeal.InMobi'] = { publisherId = 'com.coronalabs' },
  110. ['plugin.appodeal.IronSource'] = { publisherId = 'com.coronalabs' },
  111. ['plugin.appodeal.Mobvista'] = { publisherId = 'com.coronalabs' },
  112. ['plugin.appodeal.MyTarget'] = { publisherId = 'com.coronalabs' },
  113. ['plugin.appodeal.Ogury'] = { publisherId = 'com.coronalabs' },
  114. ['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },
  115. ['plugin.appodeal.Smaato'] = { publisherId = 'com.coronalabs' },
  116. ['plugin.appodeal.Tapjoy'] = { publisherId = 'com.coronalabs' },
  117. ['plugin.appodeal.TwitterMoPub'] = { publisherId = 'com.coronalabs' },
  118. ['plugin.appodeal.Unity'] = { publisherId = 'com.coronalabs' },
  119. ['plugin.appodeal.Vungle'] = { publisherId = 'com.coronalabs' },
  120. ['plugin.appodeal.Yandex'] = { publisherId = 'com.coronalabs' },
  121. },
  122.  
  123. --
  124. -- Project section
  125. --
  126. excludeFiles =
  127. {
  128. -- Exclude unnecessary files for each platform
  129. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  130. android = { "LaunchScreen.storyboardc", },
  131. },
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement