/Templates/build_settings.tmTemplate/template_in.txt

http://github.com/osadchuk/Corona-SDK.tmbundle · Plain Text · 26 lines · 23 code · 3 blank · 0 comment · 0 complexity · 33a4ec5b0c7ec6172634fff962f3fbfb MD5 · raw file

  1. -- The following are typical values for a landscape-mode app. Edit at will!
  2. -- Supported values for orientation: portrait, portraitUpsideDown, landscapeLeft, landscapeRight
  3. -- Boolean plist properties take a Lua-style true/false setting
  4. -- Don't forget to set CFBundleIdentifier to something meaningful!
  5. settings = {
  6. orientation = {
  7. default = "landscapeRight",
  8. supported = { "landscapeLeft", "landscapeRight" }
  9. },
  10. iphone = {
  11. plist = {
  12. UIStatusBarHidden = true, -- true or false
  13. CFBundleShortVersionString = "1.0",
  14. CFBundleVersion = "1.0.0",
  15. CFBundleIdentifier = "com.company.app",
  16. UIPrerenderedIcon = true, -- set to false if you want the gradient overlay
  17. UIApplicationExitsOnSuspend = true,
  18. }
  19. },
  20. androidPermissions = {
  21. "android.permission.INTERNET",
  22. },
  23. }