-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
42 lines (42 loc) · 932 Bytes
/
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
{
"expo": {
"name": "Online Shop",
"slug": "online-shop-app",
"version": "1.0.0",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF"
},
"androidStatusBar": {
"backgroundColor": "#E64A19",
"translucent": false
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "app.web.snaichuk.shop",
"buildNumber": "1.0.0",
"supportsTablet": true
},
"android": {
"package": "app.web.snaichuk.shop",
"versionCode": 1,
"permissions": [
"CAMERA", "ACCESS_FINE_LOCATION", "WRITE_EXTERNAL_STORAGE"
],
"useNextNotificationsApi": true
}
}
}