-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
44 lines (44 loc) · 1.23 KB
/
app.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"expo": {
"name": "DAIEM",
"slug": "daiem",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/daiem-logo.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/daiem-logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.daiem.app",
"infoPlist": {
"NSDocumentsDirectoryUsageDescription": "This app needs access to documents directory to store theme preferences.",
"NSPhotoLibraryUsageDescription": "This app needs access to photos.",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/daiem-logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.daiem.app",
"permissions": ["READ_EXTERNAL_STORAGE", "WRITE_EXTERNAL_STORAGE"]
},
"web": {
"favicon": "./assets/daiem-logo.png"
},
"plugins": ["expo-router", "expo-font", "expo-asset"],
"scheme": "daiem",
"extra": {
"eas": {
"projectId": "49097931-bbe1-4d1c-b172-eb4767f38960"
}
}
}
}