forked from mtoplak/WakeMeApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 992 Bytes
/
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
{
"expo": {
"scheme": "acme",
"web": {
"bundler": "metro"
},
"name": "WakeMeApp",
"slug": "WakeMeApp",
"notification": {
"icon": "./assets/images/alarm.png",
"color": "#311b92",
"androidMode": "default",
"androidCollapsedTitle": "Updates from Colab.notes",
"iosDisplayInForeground": true
},
"ios": {
"icon": "./assets/images/alarm.png"
},
"plugins": [
[
"expo-notifications",
{
"icon": "./assets/images/alarm.png",
"color": "#ffffff",
"sounds": [
"./assets/audio/BarkingCat.mp3",
"./assets/audio/Buzzer.mp3",
"./assets/audio/RickRoll.mp3",
"./assets/audio/Default.mp3",
"Default.mp3",
"./Default.mp3"
]
}
],
[
"expo-barcode-scanner",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access camera."
}
]
]
}
}