-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.settings
82 lines (70 loc) · 2.81 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
-- ____ ______
-- / __ \____ ____ __ ___ ______ / / __/
-- / /_/ / __ \/ __ \/ / / / | /| / / __ \/ / /_
-- / ____/ /_/ / / / / /_/ /| |/ |/ / /_/ / / __/
--/_/ \____/_/ /_/\__, / |__/|__/\____/_/_/
-- /____/
-- 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 = {
-- Supported values for orientation:
-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
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 = "Untitled Plant Game",
},
resizable = false,
defaultViewWidth = 640,
defaultViewHeight = 480,
minViewWidth = 640,
minViewHeight = 480,
},
iphone = {
xcassets = "Images.xcassets",
plist = {
NSCalendarsUsageDescription = "ponyblitz would like to use your calendar.",
NSPhotoLibraryUsageDescription = "ponyblitz would like to store a photo.",
NSCameraUsageDescription = "ponyblitz would like to take a photo.",
UILaunchStoryboardName = "LaunchScreen",
NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
ITSAppUsesNonExemptEncryption = false,
},
},
android =
{
usesPermissions =
{
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.WRITE_EXTERNAL_STORAGE",
},
},
-- 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 = { "*art/*", "README.md" },
android = { "*.xcassets*", "*.storyboardc*", },
ios = { "*AndroidResources*" },
web = { "*.xcassets*", "*.storyboardc*", "*AndroidResources*" },
win32 = { "*.xcassets*", "*.storyboardc*", "*AndroidResources*" },
macos = { "*.xcassets*", "*.storyboardc*", "*AndroidResources*" },
},
}