This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.48 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
47
48
49
50
{
"expo": {
"name": "CocktailBuilder",
"description": "This companion app for http://www.cocktailbuilder.com allows you to find which mixed drinks you can make from the ingredients from your bar. Thousands of cocktail recipes at your finger tips!",
"slug": "cocktailbuilderApp",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.cocktailbuilder",
"buildNumber": "1.0.1",
"supportsTablet": true,
"userInterfaceStyle": "light",
"config": {
"googleMobileAdsAppId": "ca-app-pub-4338763897925627~3998005828"
},
"appStoreUrl": "https://apps.apple.com/app/id1498866934"
},
"android": {
"package": "davanna.ca.cocktailbuilder",
"versionCode": 13,
"userInterfaceStyle": "light",
"config": {
"googleMobileAdsAppId": "ca-app-pub-4338763897925627~5301927751"
},
"playStoreUrl": "https://play.google.com/store/apps/details?id=davanna.ca.cocktailbuilder"
},
"androidStatusBar": {
"backgroundColor": "#FFFFFF"
},
"githubUrl": "https://github.com/BeOrNot2Be/CocktailBuilder"
}
}