-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.settings
More file actions
69 lines (68 loc) · 2.27 KB
/
build.settings
File metadata and controls
69 lines (68 loc) · 2.27 KB
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
settings = {
splashScreen =
{
enable = false
},
build =
{
neverStripDebugInfo = true,
},
orientation =
{
default = "portrait",
supported = { "portrait", "portraitUpsideDown" },
},
iphone =
{
xcassets = "Images.xcassets",
plist=
{
NSPhotoLibraryUsageDescription = "You have chosen to upload a picture from your photo library. Please be aware that thi picture will be shown within care plans and be visible to other staff members.",
NSCameraUsageDescription = "You have chosen to upload a picture or scan a QR Code. Please be aware that any picture you upload will be shown within care plans and be visible to other staff members.",
NSLocationWhenInUseUsageDescription = "This app works best by knowing your location to enable Check In and Check Out functionality for staff.",
NSAppTransportSecurity =
{
NSAllowsArbitraryLoads = true
},
UIApplicationExitsOnSuspend = true,
UIStatusBarHidden=true,
UIAppFonts = {"Calibri.ttf"},
UIAppFonts = {"GillSans-Book.ttf"},
CFBundleIdentifier="uk.co.carecontrol.howwhatwhen",
CFBundleShortVersionString = "1.00",
},
},
osx = {
plist = {
NSAppTransportSecurity =
{
NSAllowsArbitraryLoads = true
},
UIApplicationExitsOnSuspend = true,
UIStatusBarHidden=true,
UIAppFonts = {"Calibri.ttf"},
UIAppFonts = {"GillSans-Book.ttf"},
UIBackgroundModes = {"remote-notification"},
},
},
window = {
defaultMode = "normal",
resizable = true,
enableMaximizeButton = true,
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 = "How, What, When... V 0.1",
},
},
android =
{
usesPermissions =
{
"android.permission.VIBRATE",
"android.permission.INTERNET",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.CALL_PHONE",
},
},
}