-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathapp.json
More file actions
121 lines (121 loc) · 3.54 KB
/
app.json
File metadata and controls
121 lines (121 loc) · 3.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"expo": {
"name": "Avy",
"slug": "avalanche-forecast",
"owner": "nwac",
"version": "1.0.17",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#152E57"
},
"runtimeVersion": {
"policy": "appVersion"
},
"jsEngine": "hermes",
"updates": {
"url": "https://u.expo.dev/47e2fd36-5165-4eb4-9a2d-21beec393379",
"fallbackToCacheTimeout": 0
},
"platforms": ["ios", "android"],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "us.nwac.forecast",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": "NO",
"NSPhotoLibraryUsageDescription": "The app is requesting access to the photo library to enable submission of avalanche observations that can include photos and/or video to provide context of an avalanche that was observed."
},
"associatedDomains": ["applinks:nwac.us"]
},
"android": {
"package": "us.nwac.forecast",
"icon": "./assets/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#152E57"
},
"permissions": ["READ_EXTERNAL_STORAGE", "WRITE_EXTERNAL_STORAGE"],
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "nwac.us",
"pathPrefix": "/observations"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"plugins": [
"expo-mail-composer",
"expo-web-browser",
"expo-localization",
"expo-background-task",
[
"@rnmapbox/maps",
{
"RNMapboxMapsVersion": "11.16.0",
"RNMapboxImpl": "mapbox"
}
],
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26,
"compileSdkVersion": 35,
"targetSdkVersion": 35
}
}
],
[
"@sentry/react-native/expo",
{
"organization": "nwac",
"project": "mobile-app",
"setCommits": true
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos so you can share your observations with NWAC forecasters."
}
],
[
"expo-font",
{
"fonts": [
"node_modules/@expo-google-fonts/lato/Lato_100Thin.ttf",
"node_modules/@expo-google-fonts/lato/Lato_100Thin_Italic.ttf",
"node_modules/@expo-google-fonts/lato/Lato_300Light.ttf",
"node_modules/@expo-google-fonts/lato/Lato_300Light_Italic.ttf",
"node_modules/@expo-google-fonts/lato/Lato_400Regular_Italic.ttf",
"node_modules/@expo-google-fonts/lato/Lato_400Regular.ttf",
"node_modules/@expo-google-fonts/lato/Lato_700Bold.ttf",
"node_modules/@expo-google-fonts/lato/Lato_700Bold_Italic.ttf",
"node_modules/@expo-google-fonts/lato/Lato_900Black.ttf",
"node_modules/@expo-google-fonts/lato/Lato_900Black_Italic.ttf"
]
}
]
],
"extra": {
"eas": {
"projectId": "47e2fd36-5165-4eb4-9a2d-21beec393379"
},
"avalanche_center": "NWAC",
"log_level": "info",
"mapboxAPIKey": "LOADED_FROM_ENVIRONMENT"
}
}
}