-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.settings
89 lines (75 loc) · 2.2 KB
/
build.settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
--
-- For more information on build.settings, see the Project Build Settings guide:
-- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
--
settings = {
-- Use the "orientation" table to set the default and supported device orientations
-- Acceptable values are "portrait", "portraitUpsideDown", "landscapeRight", or "landscapeLeft"
orientation = {
default = "landscapeRight",
supported = { "landscapeRight" }
},
android =
{
usesPermissions =
{
"android.permission.INTERNET",
},
},
iphone =
{
plist =
{
UIStatusBarHidden = false,
--UIApplicationExitsOnSuspend = true, -- Uncomment to quit app on suspend
CFBundleIconFiles =
{
"Icon.png",
"Icon@2x.png",
"Icon-60.png",
"Icon-60@2x.png",
"Icon-60@3x.png",
"Icon-72.png",
"Icon-72@2x.png",
"Icon-76.png",
"Icon-76@2x.png",
"Icon-167.png",
"Icon-Small.png",
"Icon-Small@2x.png",
"Icon-Small@3x.png",
"Icon-Small-40.png",
"Icon-Small-40@2x.png",
"Icon-Small-50.png",
"Icon-Small-50@2x.png",
},
},
},
-- This setting can be used to turned on to disable debug symbol stripping altogether
build = {
--neverStripDebugInfo = true
},
window = {
titleText = {
-- The "default" text will be used if the system is using a language and/or
-- country code not defined. This serves as a fallback mechanism.
default = "Skeleton",
},
},
plugins =
{
},
-- Files to be excluded are specified per-platform (iOS, Android, or all) using simple pattern
-- matching where * means any string of characters, sometimes including /.
excludeFiles = {
-- On iOS, exclude all Android icon files and .ogg files
iphone = { "Icon-*dpi.png", "*.ogg" },
-- On Android, exclude iOS "retina" image files and .aac files
android = { "Icon.png", "*@2x.png", "*.aac" },
-- On MacOS, exclude unnecessary assets from desktop apps
osx = { "Default*.png", "Icon*.png", "Icon*.ico", "Icon*.icns", "*.aac" },
-- On Windows, exclude unnecessary assets from desktop apps
win32 = { "Default*.png", "Icon*.png", "Icon*.ico", "Icon*.icns", "*.aac" },
-- On tvOS, exclude all Android icon files and .ogg files
tvos = { "Icon-*.png", "*.ogg" },
},
}