-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·43 lines (43 loc) · 1.06 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
{
"expo": {
"name": "Cocktail Me",
"slug": "cocktailme-mobile",
"privacy": "unlisted",
"version": "1.0.4",
"orientation": "portrait",
"icon": "./app/assets/icon.png",
"splash": {
"image": "./app/assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#3f9e54"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.yanivgoldfrid.cocktailme",
"buildNumber": "1.0.4"
},
"android": {
"package": "com.yanivgoldfrid.cocktailme",
"versionCode": 5
},
"web": {
"favicon": "./assets/favicon.png"
},
"description": "Make your own homemade cocktails with the ingredients you have in your kitchen",
"githubUrl": "https://github.com/ygoldfrid/cocktail-me-mobile",
"extra": {
"bugsnag": {
"apiKey": "0a0f955ffe330293fef06e410db3ee5d"
}
},
"hooks": {
"postPublish": [
{
"file": "@bugsnag/expo/hooks/post-publish.js",
"config": {}
}
]
}
}
}