-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.settings
60 lines (50 loc) · 1.33 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
-- Supported values for orientation:
-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings =
{
orientation =
{
default = "portrait",
supported = { "portrait", }
},
iphone =
{
plist =
{
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon = true,
UIStatusBarHidden = true,
UIAppFonts = { "AvenirLTStd-Black.otf","SourceCodePro-Black.ttf" },
MinimumOSVersion = "5.1.0",
CFBundleIconFiles =
{
"Icon.png",
"Icon-Small-40.png",
"Icon-60.png",
"Icon-72.png",
"Icon-76.png",
"Icon-Small-50.png",
"Icon-Small.png",
},
},
skipPNGCrush = false,
},
android =
{
versionCode = "1",
usesPermissions =
{
"android.permission.INTERNET",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_COURSE_LOCATION",
},
},
}