-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
55 lines (55 loc) · 1.38 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
{
"expo": {
"name": "Climbers Eye",
"slug": "Spray",
"version": "1.0.3",
"orientation": "portrait",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.gabrielmurry.Spray",
"icon": "./src/assets/images/icon.png"
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#ffffff"
},
"permissions": ["android.permission.CAMERA"],
"package": "com.gabrielmurry.Spray"
},
"web": {},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "Allow Climber's Eye to access your camera."
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow Climber's Eye to access your photos.",
"cameraPermission": "Allow Climber's Eye to open the camera.",
"//": "Disables the microphone permission",
"microphonePermission": false
}
]
],
"extra": {
"eas": {
"projectId": "f0c50695-8dd8-4403-9f64-7521b87af293"
}
},
"runtimeVersion": "1.0.3",
"updates": {
"url": "https://u.expo.dev/f0c50695-8dd8-4403-9f64-7521b87af293"
}
}
}