-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.settings
80 lines (68 loc) · 2.08 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
------------------------------------------------------------------------------
--
-- This file is part of OpenBilgi, a roguelike trivia game repository
--
-- For overview and more information on licensing please refer to README.md
--
-- Home page: https://github.com/sekodev/OpenBilgi
--
-- Contact: info.sleepybug@gmail.com
--
------------------------------------------------------------------------------
settings =
{
splashScreen =
{
enable = false
},
orientation =
{
default = "portrait", --initial launch orientation
supported = { "portrait" }, --table of allowed options for auto-orientation
},
android =
{
usesPermissions =
{
--"android.permission.INTERNET",
},
},
iphone =
{
plist =
{
xcassets = "Images.xcassets",
UIStatusBarHidden = true,
CFBundleDisplayName = "bilgi",
CFBundleName = "bilgi",
CFBundleIconFiles = {
"Icon-40.png",
"Icon-58.png",
"Icon-76.png",
"Icon-80.png",
"Icon-87.png",
"Icon-120.png",
"Icon-152.png",
"Icon-167.png",
"Icon-180.png",
},
CFBundleLocalizations =
{
"en", --English
"tr", --Turkish
},
},
},
plugins =
{
["CoronaProvider.native.popup.social"] = { publisherId = "com.coronalabs" },
},
excludeFiles =
{
all = { "*.pdn", "storeFiles*", ".git*", "*.md" },
ios = {"Icon-*dpi.png", "Icon*.ico", "Icon*.icns", "Icon-Amazon.png", "IconNotificationDefault*.png", "AndroidResources*"},
osx = {"Icon*.png", "Icon*.ico", "IconNotificationDefault*.png", "AndroidResources*"},
android = {"*.nib", "*.xcassets", "iTunes*.png", "Icon*.ico", "Icon*.icns"},
win32 = {"*.nib", "*.xcassets", "Icon*.png", "Icon*.icns", "iTunes*.png", "IconNotificationDefault*.png", "AndroidResources*"},
},
}