-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapp.json
More file actions
39 lines (39 loc) · 998 Bytes
/
app.json
File metadata and controls
39 lines (39 loc) · 998 Bytes
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
{
"expo": {
"name": "todoapp",
"slug": "todoapp",
"version": "1.0.3",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"description": "A todo app demonstrating SQLite CloudSync extension functionalities",
"keywords": ["sqlite", "cloudsync", "todo", "sync"],
"privacy": "public",
"platforms": ["ios", "android"],
"plugins": [
"./plugins/CloudSyncSetup.js"
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ai.sqlite.todoapp"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "ai.sqlite.todoapp"
},
"extra": {
"eas": {
"projectId": "faffd54b-fc15-4368-987a-a73b08640cfd"
}
},
"owner": "sqliteai"
}
}