Advertisement
sharkappsllc

build.settings for Android build error 256 issue

Oct 10th, 2019
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1.  
  2. settings = {
  3.  
  4. orientation = {
  5. default = "landscapeLeft",
  6. supported = { "landscapeLeft", "landscapeRight"}
  7. -- Supported values for orientation:
  8. -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  9. },
  10.  
  11. android = {
  12. mainIntentFilter =
  13. {
  14. categories = { "tv.ouya.intent.category.GAME" }, -- needed to show up in OUYA menu
  15. },
  16. usesExpansionFile = true, -- needed for Google Play apps >50mb
  17. usesPermissions =
  18. {
  19. "android.permission.INTERNET",
  20. "com.android.vending.CHECK_LICENSE",
  21. "android.permission.WRITE_EXTERNAL_STORAGE"
  22. },
  23. },
  24.  
  25. iphone = {
  26. xcassets = "Images.xcassets",
  27. plist = {
  28. UIStatusBarHidden = false,
  29. UIPrerenderedIcon = true, -- set to false for "shine" overlay
  30. --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend
  31. -- CFBundleShortVersionString = "1.0.4", -- required for submitting to iTunes Connect
  32. UILaunchStoryboardName = "LaunchScreen",
  33. UIAppFonts =
  34. {
  35. "d puntillas D to tiptoe.ttf",
  36. }
  37. }
  38. },
  39.  
  40. -- Android permissions
  41.  
  42. androidPermissions = {
  43. "android.permission.INTERNET",
  44. -- "android.permission.RECORD_AUDIO"
  45. },
  46.  
  47.  
  48. -- exclude files per platform
  49. excludeFiles =
  50. {
  51. -- all = { "*secret.txt", "artwork/*" },
  52. iphone = { "Icon-*dpi.png", "audio/*.ogg" },
  53. android = { "Icon.png", "Icon1024.png", "*@2x.png", "*@3x.png", "audio/*.m4a", "audio/*.aac", "iTunesArtwork*" }
  54. },
  55.  
  56. -- PLUGINS
  57. -- plugins =
  58. -- {
  59. -- ["plugin.openssl"] = { publisherId = "com.coronalabs", },
  60. -- },
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement