-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
46 lines (46 loc) · 1.2 KB
/
app.json
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
{
"expo": {
"scheme": "livre",
"name": "Livre",
"slug": "livre",
"plugins": [
"@config-plugins/react-native-blob-util",
"@config-plugins/react-native-pdf",
"sentry-expo"
],
"android": {
"icon": "./assets/icons/mipmap-xxxhdpi/ic_launcher.png",
"adaptiveIcons": {
"foregroundImage": "./assets/icons/mipmap-xxxhdpi/ic_launcher.png",
"background": "white"
},
"splash": {
"image": "./assets/splash.png",
"backgroundColor": "#060011",
"resizeMode": "contain"
},
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.DOWNLOAD_WITHOUT_NOTIFICATION",
"android.permission.ACCESS_NETWORK_STATE"
],
"package": "com.justpatrick.livre",
"versionCode": 5
},
"extra": {
"eas": {
"projectId": "c73b5d63-8046-4ea9-b732-c6d9419fa7be"
}
},
"ios": {
"bundleIdentifier": "com.justpatrick.livre"
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/c73b5d63-8046-4ea9-b732-c6d9419fa7be"
}
}
}