This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.json
66 lines (66 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"expo": {
"name": "expo-ticket-app",
"description": "\uD83D\uDC8E A React Native ticket app to start learning Expo very quickly with selected libraries \uD83D\uDCDA",
"slug": "expo-ticket-app",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.4.0",
"orientation": "portrait",
"icon": "./src/images/app-icon-h2t.png",
"splash": {
"image": "./src/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#10181f"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"*/images/*"
],
"ios": {
"buildNumber": "1.3.0",
"supportsTablet": false,
"bundleIdentifier": "expo.ticket.app",
"googleServicesFile": "",
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan barcodes on event tickets."
},
"appStoreUrl": "https://apps.apple.com/us/app/h2t/id1502288567"
},
"androidStatusBar": {
"barStyle": "light-content"
},
"android": {
"playStoreUrl": "https://play.google.com/store/apps/details?id=club.h2t.app",
"package": "expo.ticket.app",
"versionCode": 1,
"googleServicesFile": "",
"permissions": [
"CAMERA"
]
},
"web": {
"config": {
"firebase": {
"appId": "",
"apiKey": "",
"measurementId": ""
}
}
},
"notification": {
"icon": "./src/images/ic_stat_logo_h2t.png",
"androidMode": "default",
"color": "#fc1055",
"androidCollapsedTitle": "H2T"
}
}
}