-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.27 KB
/
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
44
{
"expo": {
"name": "Fun Times",
"slug": "fun-times",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"version": "1.0.7",
"orientation": "portrait",
"icon": "./assets/app-logo.png",
"primaryColor": "#AEECEF",
"splash": {
"image": "./assets/app-logo.png",
"resizeMode": "contain",
"backgroundColor": "#AEECEF"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"description": "Fun Times helps you find and celebrate quirky milestones for birthdays, anniversaries, etc. For example, enter a friend's birthday and learn interesting numeric milestones (e.g. they're turning 1 billion seconds old in a few weeks). Add these celebration milestones to your calendar to receive a reminder notification.",
"android": {
"package": "com.carolinadev247.funtimes",
"versionCode": 7,
"permissions": [
"READ_CALENDAR",
"WRITE_CALENDAR"
],
"adaptiveIcon": {
"backgroundColor": "#AEECEF",
"foregroundImage": "./assets/app-logo-foregroundImage.png"
}
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.carolinadev247.funtimes",
"buildNumber": "1.0.7"
}
}
}