-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.04 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"expo": {
"name": "TaskFlow",
"slug": "taskflow",
"version": "1.1.0",
"orientation": "portrait",
"userInterfaceStyle": "light",
"entryPoint": "./App.tsx",
"icon": "./assets/icon.png",
"scheme": "taskflow",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#3B82F6"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.taskflow.app",
"icon": "./assets/icon.png"
},
"android": {
"package": "com.taskflow.app",
"versionCode": 2,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#3B82F6"
},
"icon": "./assets/icon.png"
},
"web": {
"bundler": "metro",
"favicon": "./assets/favicon.png"
},
"experiments": {
"baseUrl": "/TaskFlow/"
},
"plugins": [],
"extra": {
"eas": {
"projectId": "00000000-0000-0000-0000-000000000000"
}
}
}
}