forked from NWACus/avy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
82 lines (82 loc) · 2.18 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
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
{
"expo": {
"name": "Avy",
"slug": "avalanche-forecast",
"owner": "nwac",
"version": "1.0.9",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"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",
"config": {
"googleMapsApiKey": "LOADED_FROM_ENVIRONMENT"
},
"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."
}
},
"android": {
"package": "us.nwac.forecast",
"config": {
"googleMaps": {"apiKey": "LOADED_FROM_ENVIRONMENT"}
},
"icon": "./assets/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#152E57"
},
"permissions": ["READ_EXTERNAL_STORAGE", "WRITE_EXTERNAL_STORAGE"]
},
"plugins": [
"expo-localization",
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26
}
}
],
[
"@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"
],
"extra": {
"eas": {
"projectId": "47e2fd36-5165-4eb4-9a2d-21beec393379"
},
"avalanche_center": "NWAC",
"log_level": "info"
}
}
}