generated from expo/expo-template-default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (67 loc) · 1.45 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": "describr",
"slug": "describr",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"intentFilters": [
{
"action": "GET_CONTENT",
"data": [
{
"mimeType": "image/*"
},
{
"mimeType": "video/*"
}
],
"category": [
"DEFAULT",
"OPENABLE"
]
}
],
"permissions": [
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.MANAGE_EXTERNAL_STORAGE"
],
"package": "com.nafeij.describr"
},
"plugins": [
"expo-router",
[
"expo-media-library",
{
"isAccessMediaLocationEnabled": true
}
],
"./android-manifest-launch-mode-plugin",
"expo-secure-store",
"expo-video"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "f9b8a1bd-5bda-48c1-9dcd-3dae733ecd5a"
}
}
}
}