mysticeti

Build settings - Uh Oh

May 8th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. settings =
  2. {
  3. orientation =
  4. {
  5. -- Supported values for orientation:
  6. -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  7.  
  8. default = "portrait",
  9. supported = { "portrait", },
  10. },
  11.  
  12. iphone =
  13. {
  14. xcassets = "Images.xcassets",
  15. plist =
  16. {
  17. UIStatusBarHidden = false,
  18. UILaunchStoryboardName = "LaunchScreen",
  19. ITSAppUsesNonExemptEncryption = false, -- This sample doesn't use custom encryption
  20. ITSAppUsesNonExemptEncryption = false, -- This sample doesn't use custom encryption
  21. },
  22. },
  23.  
  24. splashScreen =
  25. {
  26. ios = {
  27. enable = false
  28. },
  29. android = {
  30. enable = false
  31. }
  32. },
  33.  
  34. --
  35. -- Android Section
  36. --
  37. android =
  38. {
  39.  
  40. applicationChildElements =
  41. {
  42. [[
  43. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  44. android:value="ca-app-pub-ID HERE"/> -- replace with your app id. See: https://goo.gl/fQ2neu
  45. ]],
  46. },
  47.  
  48. usesPermissions =
  49. {
  50. "android.permission.INTERNET",
  51. "android.permission.ACCESS_COARSE_LOCATION",
  52. "android.permission.ACCESS_NETWORK_STATE",
  53. "android.permission.ACCESS_FINE_LOCATION",
  54. "com.android.vending.CHECK_LICENSE",
  55. "android.permission.VIBRATE",
  56. "com.android.vending.BILLING",
  57. "android.permission.WRITE_EXTERNAL_STORAGE",
  58. "android.permission.GET_ACCOUNTS",
  59.  
  60. },
  61.  
  62. googlePlayGamesAppId = "PLAYID HERE",
  63.  
  64. usesFeatures =
  65. {
  66. { name="android.hardware.sensor.accelerometer", required=true },
  67. },
  68.  
  69. },
  70.  
  71. plugins =
  72. {
  73.  
  74. ["CoronaProvider.native.popup.social"] =
  75. {
  76. publisherId = "com.coronalabs"
  77. },
  78. ["plugin.gpgs.v2"] =
  79. {
  80. publisherId = "com.coronalabs",
  81. supportedPlatforms = { ["android"] = true }
  82. },
  83. ["plugin.google.iap.v3"] =
  84. {
  85. publisherId = "com.coronalabs"
  86. },
  87.  
  88. ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' },
  89. ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' },
  90. ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },
  91. ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' },
  92. ['plugin.appodeal.beta.AmazonAds'] = { publisherId = 'com.coronalabs' },
  93. ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' },
  94. ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' },
  95. ['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' },
  96. ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' },
  97. ['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' },
  98. ['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' },
  99. ['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' },
  100. ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },
  101. ['plugin.appodeal.beta.Smaato'] = { publisherId = 'com.coronalabs' },
  102. ['plugin.appodeal.beta.Unity'] = { publisherId = 'com.coronalabs' },
  103. ['plugin.appodeal.beta.Vungle'] = { publisherId = 'com.coronalabs' },
  104. ['plugin.appodeal.beta.Ogury'] = { publisherId = 'com.coronalabs' },
  105.  
  106. }
  107. }
Add Comment
Please, Sign In to add comment