-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
42 lines (42 loc) · 881 Bytes
/
app.json
File metadata and controls
42 lines (42 loc) · 881 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
40
41
42
{
"expo": {
"name": "Notes",
"slug": "notes-app",
"version": "1.4.0",
"owner": "kaushalsahu.07",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"splash": {
"image": "./assets/icon.png",
"resizeMode": "contain",
"backgroundColor": "#0F0025"
},
"assetBundlePatterns": [
"**/*"
],
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#0F0025"
},
"permissions": [
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE"
],
"package": "com.kaushal.notesapp"
},
"plugins": [
"expo-router"
],
"scheme": "my-notes-app",
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "Your Project ID"
}
}
}
}