-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
72 lines (72 loc) · 2.04 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
{
"expo": {
"name": "Ocean Scan",
"slug": "ocean-scan",
"owner": "prototypsthlm",
"version": "1.0.16",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"scheme": "oceanscan",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#2C3339"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/c0a1e426-7056-416f-b872-fe40e170cf15"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "se.prototyp.oceanscanapp",
"buildNumber": "1.0.16",
"infoPlist": {
"NSCameraUsageDescription": "Enable Camera access so that you can take pictures for the observation and extract the location and timestamp data",
"NSLocationWhenInUseUsageDescription": "Enable Location to use in case the photo provided doesn't have location data",
"NSPhotoLibraryUsageDescription": "Enable access to your Photo Library so you can upload them and extract the location and timestamp data"
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"package": "se.prototyp.oceanscanapp",
"versionCode": 15,
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/adaptive-icon.png",
"backgroundColor": "#2C3339"
},
"config": {
"googleMaps": {
"apiKey": "AIzaSyAWPPObPl6LVS_wzRHps4Jo6pFwkm07ILg"
}
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"FOREGROUND_SERVICE",
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
]
},
"web": {
"favicon": "./src/assets/images/favicon.png"
},
"extra": {
"eas": {
"projectId": "c0a1e426-7056-416f-b872-fe40e170cf15"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"plugins": [
"expo-font"
]
}
}