/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
- -- The following are typical values for a landscape-mode app. Edit at will!
- -- Supported values for orientation: portrait, portraitUpsideDown, landscapeLeft, landscapeRight
- -- Boolean plist properties take a Lua-style true/false setting
- -- Don't forget to set CFBundleIdentifier to something meaningful!
- settings = {
- orientation = {
- default = "landscapeRight",
- supported = { "landscapeLeft", "landscapeRight" }
- },
-
- iphone = {
- plist = {
- UIStatusBarHidden = true, -- true or false
- CFBundleShortVersionString = "1.0",
- CFBundleVersion = "1.0.0",
- CFBundleIdentifier = "com.company.app",
- UIPrerenderedIcon = true, -- set to false if you want the gradient overlay
- UIApplicationExitsOnSuspend = true,
- }
- },
-
- androidPermissions = {
- "android.permission.INTERNET",
- },
- }