-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.config.js
102 lines (101 loc) · 2.77 KB
/
app.config.js
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
var config = require('./private.config.js');
module.exports = {
"expo": {
"name": "CuppaZee",
"owner": "sohcah",
"slug": "PaperZee",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "sohcah",
"project": "cuppazee",
"authToken": config.sentry_token
}
}
]
},
"githubUrl": "https://github.com/CuppaZee/CuppaZee",
"scheme": "cuppazee",
"version": "1.2.0",
"orientation": "default",
"icon": "./assets/CuppaZeeIcon.png",
"splash": {
"image": "./assets/CuppaZeeSplash.png",
"resizeMode": "contain",
"backgroundColor": "#00C35B"
},
"updates": {
"fallbackToCacheTimeout": 30000
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "uk.cuppazee.paper",
"buildNumber": "1.2.0",
"icon": "./assets/CuppaZeeIcon.png",
"requireFullScreen": false,
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "CuppaZee uses the camera to scan Munzees.",
"NSLocationWhenInUseUsageDescription": "CuppaZee uses your location when in use for maps.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "CuppaZee uses your location when in use for maps, and in the background for notifications.",
"NSLocationAlwaysUsageDescription": "CuppaZee uses your location when in use for maps, and in the background for notifications."
},
"config": {
"googleMapsApiKey": "AIzaSyAT1J1Z5S02Avk9p4IqUKPtEYOV7gI8-PA"
},
"associatedDomains": [
"applinks:cuppazee.app"
]
},
"android": {
"config": {
"googleMaps": {
"apiKey": "AIzaSyBDgPXi66fB9Yd4XyAhEnDaA0XrqdbvEDo"
}
},
"package": "uk.cuppazee.paper",
"versionCode": 8,
"icon": "./assets/CuppaZeeIcon.png",
"adaptiveIcon": {
"backgroundColor": "#00C35B",
"foregroundImage": "./assets/CuppaZeeAndroid.png"
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"CAMERA",
"VIBRATE"
],
"intentFilters": [
{
"action": "VIEW",
"data": {
"scheme": "https",
"host": "cuppazee.app"
},
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"notification": {
"icon": "./assets/CuppaZeeNotification.png",
"color": "#00C35B",
"iosDisplayInForeground": true,
"androidMode": "default",
"androidCollapsedTitle": "#{unread_notifications} Alerts"
}
}
}