Advertisement
Guest User

Build error 2019.3521 - build.settings

a guest
Sep 1st, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. settings =
  2. {
  3. orientation =
  4. {
  5. default = "portrait",
  6. supported = { "portrait" },
  7. },
  8. android =
  9. {
  10. minSdkVersion = "18",
  11. usesPermissions =
  12. {
  13. "android.permission.CAMERA",
  14. "android.permission.INTERNET",
  15. "android.permission.VIBRATE",
  16. "android.permission.WRITE_EXTERNAL_STORAGE",
  17. },
  18. usesFeatures =
  19. {
  20. { name = "android.hardware.location.network", required = false },
  21. },
  22. },
  23. iphone =
  24. {
  25. xcassets = "Images.xcassets",
  26. plist =
  27. {
  28. MinimumOSVersion = "8.0",
  29. NSPhotoLibraryUsageDescription = "Not used in this app",
  30. NSCameraUsageDescription = "Used to scan QR codes and barcodes",
  31. ITSAppUsesNonExemptEncryption = false,
  32. NSCalendarsUsageDescription = "Testing",
  33. NSAppTransportSecurity =
  34. {
  35. NSAllowsArbitraryLoads = true,
  36. NSExceptionDomains =
  37. {
  38. ["allthumbsdev.com"] =
  39. {
  40. NSIncludesSubdomains = true,
  41. NSThirdPartyExceptionAllowsInsecureHTTPLoads = true,
  42. NSAllowsArbitraryLoads = false,
  43. },
  44. },
  45. },
  46. UILaunchStoryboardName = "LaunchScreen",
  47. }
  48. },
  49.  
  50. window =
  51. {
  52. -- Settings for the desktop window; applies to both Win32 and OS X desktop apps
  53. defaultViewWidth = 320,
  54. defaultViewHeight = 480,
  55. resizable = true,
  56. minViewWidth = 320,
  57. minViewHeight = 480,
  58. },
  59. plugins =
  60. {
  61. ["plugin.utf8"] = { publisherId = "com.coronalabs" },
  62. ["plugin.pasteboard"] = { publisherId = "com.coronalabs" },
  63. ["plugin.texttospeech"] = { publisherId = "com.spiralcodestudio" },
  64. ["plugin.vibrator"] = { publisherId = "com.spiralcodestudio" },
  65. ["plugin.qrscanner"] = { publisherId = "com.spiralcodestudio" },
  66. ["plugin.keyboardEvents"] = { publisherId = "net.shakebrowser" },
  67. },
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement