Guest User

Untitled

a guest
Nov 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 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. splashScreen =
  9. {
  10. enable = false
  11. },
  12.  
  13. orientation = {
  14. default = "portrait",
  15. supported = { "portrait","landscapeLeft","landscapeRight"}
  16. },
  17.  
  18. --
  19. -- Android section
  20. --
  21. android =
  22. {
  23. googlePlayGamesAppId = "XXXXXXXXXXXX",
  24. usesPermissions =
  25. {
  26. "android.permission.INTERNET",
  27. "android.permission.ACCESS_NETWORK_STATE",
  28. "android.permission.VIBRATE",
  29. "com.android.vending.CHECK_LICENSE",
  30.  
  31. },
  32. applicationChildElements =
  33. {
  34. [[
  35. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  36. android:value="ca-app-pub-XXXXXXXXXX~XXXXXXXXXX"/> -- This is Solitaire Admob Id, not test one
  37. ]],
  38. },
  39.  
  40. intentFilters =
  41. {
  42. {
  43. label = "Play next round",
  44. actions = { "android.intent.action.VIEW" },
  45. categories =
  46. {
  47. "android.intent.category.DEFAULT",
  48. "android.intent.category.BROWSABLE",
  49. },
  50. data = { scheme = "solitaireonejellyfish" },
  51. },
  52. },
  53. },
  54.  
  55. --
  56. -- Plugins section
  57. --
  58. plugins = {
  59. ["plugin.admob"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true }, },
  60. ["plugin.notifications.v2"] = { publisherId = "com.coronalabs" },
  61. ["plugin.gpgs.v2"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } },
  62. ["plugin.fbAudienceNetwork.paid"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } },
  63.  
  64. },
  65.  
  66. --
  67. -- Project section
  68. --
  69. excludeFiles =
  70. {
  71. -- Exclude unnecessary files for each platform
  72. all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
  73. android = { "LaunchScreen.storyboardc", },
  74. },
  75. }
Add Comment
Please, Sign In to add comment