-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
79 lines (79 loc) · 2.33 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
{
"expo": {
"name": "Arena Mobile 2",
"slug": "arena-mobile",
"owner": "openforis",
"version": "2.0.0",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive_icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "org.openforis.arena_mobile",
"versionCode": 5
},
"ios": {
"buildNumber": "5",
"bundleIdentifier": "org.openforis.arena-mobile",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"LSMinimumSystemVersion": "13.0",
"NSCameraUsageDescription": "Camera is used only when collecting images in file attributes (if defined in your survey).",
"NSLocationWhenInUseUsageDescription": "Location is used only when collecting coordinates in coordinate attributes (if defined in your survey).",
"NSMicrophoneUsageDescription": "Microphone is used only when recording audio or video in file attributes (if defined in your survey).",
"NSMotionUsageDescription": "Devices's acceleraometer is used only when using the 'navigator' in coordinate attributes (if defined in your survey).",
"NSPhotoLibraryUsageDescription": "Access to the photo library is required only when selecting images to be used in file attributes (if defined in your survey)."
},
"supportsTablet": true
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "adc829ff-2bf8-4733-9e03-051d16d0f9ca"
}
},
"plugins": [
[
"expo-asset",
{
"assets": ["assets"]
}
],
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.5"
}
}
],
[
"./plugins/modifyAndroidManifestAttributes",
{
"application": {
"android:hardwareAccelerated": "true",
"android:largeHeap": "true"
}
}
],
"expo-asset",
"expo-localization",
"expo-secure-store"
]
}
}