-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.34 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"expo": {
"name": "odo",
"slug": "odo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/app-icon-all.png",
"userInterfaceStyle": "dark",
"splash": {
"backgroundColor": "#303041"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"icon": "./assets/app-icon-ios.png",
"supportsTablet": true,
"bundleIdentifier": "com.odo",
"splash": {
"backgroundColor": "#303041"
}
},
"android": {
"icon": "./assets/app-icon-android-legacy.png",
"package": "com.odo",
"adaptiveIcon": {
"foregroundImage": "./assets/app-icon-android-adaptive-foreground.png",
"backgroundImage": "./assets/app-icon-android-adaptive-background.png"
},
"splash": {
"backgroundColor": "#303041"
}
},
"extra": {
"eas": {
"projectId": "5580fe4e-a108-40aa-8d5f-a60b05d07d61"
}
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
]
}
}