-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.11 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"expo": {
"name": "Interactive-Book-Reader-AR",
"slug": "Interactive-Book-Reader-AR",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"plugins": [
"@config-plugins/react-native-blob-util",
"@config-plugins/react-native-pdf"
],
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/AppLogo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/Icon_App.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"
],
"package": "com.amrithshagar.InteractiveBookReaderAR"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "6a63b2ee-4363-4be2-87f3-9c7ffa2e6f07"
}
}
}
}