-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
45 lines (45 loc) · 1.16 KB
/
app.json
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
{
"expo": {
"scheme": "fitnus",
"name": "fitNUS",
"slug": "fitNUS",
"version": "0.0.0",
"orientation": "portrait",
"icon": "./assets/FitNUS.png",
"splash": {
"image": "./assets/FitNUS.png",
"resizeMode": "contain",
"backgroundColor": "#d3d3d3"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "fitNus",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Just say yes thank you - app.json infoPlist",
"NSLocationAlwaysAndWhenInUseUsageDescription": "Just say yes thank you - app.json infoPlist",
"NSLocationAlwaysUsageDescription": "Hellos - app.json infoPlist"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION"
],
"package": "com.rushilramesh.fitNUS"
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}