-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (67 loc) · 1.72 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
{
"expo": {
"name": "TheArt-of-Travell",
"slug": "TheArt-of-Travell",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow APP to access your photos.",
"savePhotosPermission": "Allow APP to save photos.",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-camera",
{
"cameraPermission": "Allow the APP to access your camera."
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow APP to use your location."
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
]
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "Allow the APP to access your camera.",
"NSLocationWhenInUseUsageDescription": "Allow the APP to use your location."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.irinavn.TheArtofTravell",
"permissions": ["CAMERA", "ACCESS_COARSE_LOCATION", "ACCESS_FINE_LOCATION"]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "1ebee26c-276b-4619-b166-86279e92cf24"
}
}
}
}