-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.config.ts
73 lines (71 loc) · 1.78 KB
/
app.config.ts
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
import { ExpoConfig, ConfigContext } from "expo/config";
const extra: AppExtra = {
api: {
url: "https://spinitron-proxy.d08jp15rftr3s.us-east-2.cs.amazonlightsail.com/api",
},
donate: {
text: "Give to WCBN",
url: "https://leadersandbest.umich.edu/find/#!/give/basket/fund/361991",
},
phone: {
text: "Studio request line",
numberFormatted: "(734) 763-3500",
numberRaw: "17347633500",
},
chat: {
text: "Message the DJ",
url: "https://hangouts.google.com/chat/person/118357885959401668528",
},
streams: [
{
text: "Low",
bitrate: "64 kbps",
uri: "http://floyd.wcbn.org:8000/wcbn-mid.mp3",
default: false,
},
{
text: "Medium",
bitrate: "128 kbps",
uri: "http://floyd.wcbn.org:8000/wcbn-hi.mp3",
default: false,
},
{
text: "High",
bitrate: "320 kbps",
uri: "http://floyd.wcbn.org:8000/wcbn-hd.mp3",
default: true,
},
],
share: {
text: "Share on social media",
message: "I'm listening to WCBN-FM Ann Arbor!",
},
review: {
text: "Write a review!",
},
eas: {
projectId: "f8dd9750-164f-11e9-8b84-313f96953860",
},
} as const;
export default ({ config: appJSONConfig }: ConfigContext): ExpoConfig => ({
...appJSONConfig,
extra,
name: "WCBN-FM Ann Arbor",
description:
"Discover new music from the student-run radio station of the University of Michigan.",
slug: "wcbn-app",
version: "52.0.0",
ios: {
...appJSONConfig.ios,
bundleIdentifier: "org.wcbn",
},
android: {
...appJSONConfig.android,
package: "org.wcbn",
playStoreUrl: "https://play.google.com/store/apps/details?id=org.wcbn",
},
updates: {
...appJSONConfig.updates,
url: "https://u.expo.dev/f8dd9750-164f-11e9-8b84-313f96953860",
},
});