Advertisement
Guest User

Untitled

a guest
Jul 4th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. settings =
  2. {
  3. splashScreen =
  4. {
  5. enable = false
  6. },
  7. orientation =
  8. {
  9. default = "portrait",
  10. supported = {"portrait",},
  11. },
  12.  
  13. android =
  14. {
  15. applicationChildElements =
  16. {
  17. [[
  18. <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
  19. android:value="ca-app-pub-1338484862334352~1480107026"/> -- replace with your app id. See: https://goo.gl/fQ2neu
  20. ]],
  21. },
  22. usesPermissions =
  23. {
  24. "com.android.vending.BILLING",
  25. "com.android.vending.CHECK_LICENSE",
  26. "android.permission.INTERNET",
  27. "android.permission.ACCESS_NETWORK_STATE",
  28. "android.permission.VIBRATE",
  29. "android.permission.WRITE_EXTERNAL_STORAGE",
  30. },
  31.  
  32. versionCode = "13",
  33. googlePlayGamesAppId = "4269108397" --long App ID number (use yours!)
  34. },
  35.  
  36. plugins =
  37. {
  38. -- key is the name passed to Lua's 'require()'
  39. ["plugin.unityads"] =
  40. {
  41. publisherId = "com.coronalabs"
  42. },
  43. ["plugin.admob"] =
  44. {
  45. publisherId = "com.coronalabs",
  46. },
  47. ["plugin.google.iap.v3"] =
  48. {
  49. publisherId = "com.coronalabs",
  50. },
  51. ["plugin.gpgs.v2"] =
  52. {
  53. publisherId = "com.coronalabs",
  54. },
  55. ["CoronaProvider.native.popup.social"] =
  56. {
  57. publisherId = "com.coronalabs"
  58. }
  59. },
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement