-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
46 lines (46 loc) · 1.18 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
45
46
{
"expo": {
"name": "Is It Shabbat?",
"slug": "is-it-shabbat",
"privacy": "unlisted",
"version": "3.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#3D2F40"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/8773eaf6-e290-437d-964f-c914c00dbe47"
},
"assetBundlePatterns": [
"./assets/**/*"
],
"ios": {
"buildNumber": "2",
"supportsTablet": true,
"bundleIdentifier": "com.jamesfulford.isitshabbat",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Is It Shabbat? needs your location to calculate sunset times at the start and end of Shabbat and other holy days."
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#FFFFFF"
},
"package": "com.ounceofsilver.isitshabbat"
},
"extra": {
"eas": {
"projectId": "8773eaf6-e290-437d-964f-c914c00dbe47"
}
},
"owner": "ounceofsilver",
"runtimeVersion": {
"policy": "appVersion"
}
}
}