-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json.sample
101 lines (101 loc) · 2.35 KB
/
app.json.sample
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
{
"expo": {
"name": "Ballboy",
"description": "Find and organize sport activities with ease",
"slug": "bb",
"owner": "federodes",
"privacy": "public",
"sdkVersion": "35.0.0",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"assets/**",
"node_modules/react-navigation/src/**/*.png",
"node_modules/@expo/vector-icons/fonts/*.ttf"
],
"entryPoint": "./index.ts",
"ios": {
"bundleIdentifier": "app.ballboy.ios",
"buildNumber": "1.0.0",
"supportsTablet": false,
"infoPlist": {
"LSApplicationQueriesSchemes": [
"comgooglemaps",
"citymapper",
"uber",
"lyft",
"waze"
]
},
"config": {
"googleMapsApiKey": "XXX"
}
},
"android": {
"package": "app.ballboy.android",
"versionCode": 1,
"permissions": [
"CAMERA_ROLL"
],
"config": {
"googleMaps": {
"apiKey": "XXX"
}
},
"intentFilters": [
{
"action": "VIEW",
"data": {
"scheme": "https",
"host": "*.ballboy.app"
},
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "ballboy",
"project": "react-native",
"authToken": "XXX"
}
}
]
},
"extra": {
"isStorybook": false,
"serverUrl": "http://192.168.1.133:3001",
"graphqlEndpoint": "/graphql",
"cloudinaryCloudname": "XXX",
"cloudinaryApiKey": "XXX",
"cloudinaryApiSecret": "XXX",
"cloudinaryUploadPreset": "default",
"webGoogleMapsApiKey": "XXX",
"rnSentryDsn": "XXX",
"webSentryDsn": "XXX",
"feedbackUrl": "https://goo.gl/forms/123",
"privacyUrl": "https://ballboy.app/privacy",
"termsUrl": "https://ballboy.app/terms"
}
}
}