forked from rationally-app/mobile-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
51 lines (51 loc) · 2.83 KB
/
app.json
File metadata and controls
51 lines (51 loc) · 2.83 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
{
"expo": {
"name": "SupplyAlly",
"slug": "rationally",
"privacy": "public",
"platforms": ["ios", "android", "web"],
"orientation": "portrait",
"scheme": "supplyally",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splashscreen.png",
"resizeMode": "contain",
"backgroundColor": "#F1FAFA"
},
"updates": {
"fallbackToCacheTimeout": 10000
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "sg.gov.tech.musket",
"splash": {
"image": "./assets/splashscreen.png",
"tabletImage": "./assets/splashscreen-tablet.png",
"backgroundColor": "#F1FAFA"
},
"infoPlist": {
"NSCameraUsageDescription": "SupplyAlly requires access to your camera to scan QR codes/barcodes.",
"NSPhotoLibraryUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSPhotoLibraryAddUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSLocationWhenInUseUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSLocationAlwaysUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSLocationUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSCalendarsUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSContactsUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSMicrophoneUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSMotionUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us.",
"NSRemindersUsageDescription": "This permission is not needed by the app, but it is required by an underlying API. If you see this dialog, contact us."
}
},
"android": {
"package": "sg.gov.tech.musket",
"permissions": ["CAMERA", "VIBRATE"]
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": ["js", "jsx", "ts", "tsx", "svg"]
}
}
}