-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
91 lines (91 loc) · 2.42 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
{
"expo": {
"name": "TreeMapper",
"slug": "treemapper",
"version": "2.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#F0F7EA"
},
"assetBundlePatterns": [
"**/*"
],
"plugins": [
"@maplibre/maplibre-react-native",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "We need access to location to be able to register trees on planted location."
}
],
[
"react-native-auth0",
{
"domain": "accounts.plant-for-the-planet.org"
}
],
[
"expo-camera",
{
"cameraPermission": "To take pictures of the trees you have planted, please allow access to your camera."
}
],
[
"expo-font",
{
"fonts": [
"./assets/fonts/OpenSans-Regular.ttf",
"./assets/fonts/OpenSans-Bold.ttf",
"./assets/fonts/OpenSans-SemiBold.ttf",
"./assets/fonts/OpenSans-ExtraBold.ttf",
"./assets/fonts/OpenSans-Italic.ttf",
"./assets/fonts/OpenSans-BoldItalic.ttf",
"./assets/fonts/OpenSans-SemiBoldItalic.ttf"
]
}
],
"expo-localization",
"expo-secure-store"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "org.pftp.treemapper",
"entitlements": {
"aps-environment": "development"
},
"infoPlist": {
"NSFaceIDUsageDescription": "Allows App to use Face ID for a simpler sign in.",
"NSLocationWhenInUseUsageDescription": "We need access to precise location to be able to register trees.",
"ITSAppUsesNonExemptEncryption": false,
"LSMinimumSystemVersion": "12.0"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#007A49"
},
"permissions": [
"android.permission.WRITE_EXTERNAL_STORAGE",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION"
],
"package": "org.pftp.treemapper"
},
"web": {
"favicon": "./assets/favicon.png"
},
"hooks": {
"postPublish": [
{
"file": "@bugsnag/expo/hooks/post-publish.js",
"config": {}
}
]
}
}
}