-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
100 lines (100 loc) · 2.74 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"expo": {
"jsEngine": "hermes",
"name": "CoMapeo",
"slug": "comapeo",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"assetBundlePatterns": ["**/*"],
"plugins": [
"expo-localization",
"expo-secure-store",
"expo-document-picker",
[
"@rnmapbox/maps",
{
"RNMapboxMapsImpl": "mapbox",
"RNMapboxMapsVersion": "11.1.0",
"RNMapboxMapsDownloadToken": "sk.eyJ1IjoiYnN0ZWZhbmN6eWsiLCJhIjoiY2x1dXV1NHNlMGU5dzJqcnh1Zno4YW4xcyJ9.P_LsVHh_HWTh25x5rRdrQg"
}
],
[
"expo-location",
{
"isIosBackgroundLocationEnabled": true,
"isAndroidBackgroundLocationEnabled": true
}
],
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"note": "Use SENTRY_AUTH_TOKEN env to authenticate with Sentry.",
"project": "comapeo",
"organization": "awana-digital"
}
],
[
"expo-font",
{
"fonts": ["node_modules/@expo-google-fonts/rubik/Rubik_400Regular.ttf", "node_modules/@expo-google-fonts/rubik/Rubik_500Medium.ttf"]
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
["./expo-config-plugins/removeExpoInputStyles.js"],
["./expo-config-plugins/targetArmArchsOnly.js"]
],
"android": {
"allowBackup": false,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#050F77"
},
"splash": {
"image": "./assets/splash.png",
"backgroundColor": "#050F77",
"resizeMode": "contain"
},
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_BACKGROUND_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
],
"package": "com.comapeo"
},
"ios": {
"splash": {
"image": "./assets/splash.png",
"backgroundColor": "#050F77",
"resizeMode": "contain"
},
"bundleIdentifier": "com.comapeo"
},
"extra": {
"eas": {
"projectId": "2d5b8137-12ec-45aa-9c23-56b6a1c522b7"
}
},
"owner": "digidem"
}
}