-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
75 lines (75 loc) · 1.94 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
{
"expo": {
"name": "lto-field-work",
"slug": "lto-field-work",
"version": "1.0.10",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#6ec1e4"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"buildNumber": "123",
"infoPlist": {
"NSCameraUsageDescription": "Please allow us to access your camera so you can take pictures when logging data",
"NSPhotoLibraryAddUsageDescription": "Please allow us to save pictures from your camera to your photo gallery",
"NSPhotoLibraryUsageDescription": "Please allow us to access your photo gallery so you can choose pictures you want to share"
},
"bundleIdentifier": "lto-field-work"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#6ec1e4"
},
"package": "LTO.FieldWork",
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"locales": {
"en": "./languages/english.json",
"pt": "./languages/portuguese.json"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 31,
"targetSdkVersion": 31,
"buildToolsVersion": "31.0.0"
},
"ios": {
"deploymentTarget": "13.0"
}
}
],
[
"expo-media-library",
{
"isAccessMediaLocationEnabled": true
}
]
],
"extra": {
"eas": {
"projectId": "ecd2516a-3636-4e4a-94cb-c1d687e3d7ca"
}
}
}
}