-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.settings
56 lines (46 loc) · 1.27 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
--
-- 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 =
{
xcassets = "Images.xcassets",
plist =
{
UILaunchStoryboardName = "LaunchScreen",
ITSAppUsesNonExemptEncryption = false, -- This sample doesn't use custom encryption
},
},
-- 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 = "Sticker Knight",
},
},
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 = {
},
}