-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.settings
97 lines (85 loc) · 2.76 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
90
91
92
93
94
95
96
97
-- ____ ______
-- / __ \____ ____ __ ___ ______ / / __/
-- / /_/ / __ \/ __ \/ / / / | /| / / __ \/ / /_
-- / ____/ /_/ / / / / /_/ /| |/ |/ / /_/ / / __/
--/_/ \____/_/ /_/\__, / |__/|__/\____/_/_/
-- /____/
-- Commented build.settings by Ponywolf
-- Targeting desktop builds
settings = {
-- The build.settings file can be used to set app orientation in relation to the
-- device's physical orientation in space — this includes auto-orientation triggered
-- by the accelerometer if the device is rotated or flipped during runtime.
-- "portrait" device in the vertical position with the home button at the bottom
-- "portraitUpsideDown" device in the vertical position with the home button at the top
-- "landscapeRight" device in the horizontal position with the home button at the right
-- "landscapeLeft" device in the horizontal position with the home button at the left
orientation = {
-- Landscape
default = "landscapeRight",
supported = { "landscapeRight", "landscapeLeft"}
},
-- 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 below. This serves as a fallback mechanism.
default = "CoronaBlitz",
},
},
iphone =
{
plist =
{
-- Icon image files table
CFBundleIconFiles = {
"icons/Icon.png",
"icons/[email protected]",
"icons/Icon-60.png",
"icons/[email protected]",
"icons/[email protected]",
"icons/Icon-72.png",
"icons/[email protected]",
"icons/Icon-76.png",
"icons/[email protected]",
"icons/Icon-167.png",
"icons/Icon-Small-40.png",
"icons/[email protected]",
"icons/Icon-Small-50.png",
"icons/[email protected]",
"icons/Icon-Small.png",
"icons/[email protected]",
"icons/[email protected]"
},
NSPhotoLibraryUsageDescription = "Unused",
NSCameraUsageDescription = "Unused",
UILaunchImages = {
{ -- iPad LandscapeRight
["UILaunchImageMinimumOSVersion"] = "7.0",
["UILaunchImageName"] = "Default",
["UILaunchImageOrientation"] = "Landscape",
["UILaunchImageSize"] = "{768, 1024}"
},
},
}
},
plugins =
{
-- ["plugin.utf8"] =
-- {
-- publisherId = "com.coronalabs",
-- },
},
-- Files to be excluded are specified per platform (iphone, android or all) using simple pattern
-- matching where * means any string of characters, sometimes including /
excludeFiles = {
-- Exclude all files at paths
all = { },
android = { },
win32 = { "Default*.png" },
osx = { "Default*.png" },
},
}