-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
30 lines (30 loc) · 918 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
{
"expo": {
"name": "K2K Flashcards",
"description": "Korean language vocabulary and grammar flashcards for quick study from KeyToKorean.com",
"slug": "k2k-flashcards",
"privacy": "public",
"sdkVersion": "27.0.0",
"platforms": ["ios", "android"],
"githubUrl": "https://github.com/jekkilekki/reactnd-flashcards",
"orientation": "default",
"primaryColor": "#00bfa5",
"icon": "./assets/img/by-heart.png",
"splash": {
"image": "./assets/img/app-screen-medium.png",
"backgroundColor": "#009688",
"resizeMode": "cover"
},
"notification": {
"icon": "./assets/img/by-heart.png",
"color": "#004d40",
"androidMode": "collapse",
"androidCollapsedTitle": "#{unread_notifications} new interactions"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 30000
}
}
}