-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
42 lines (42 loc) · 1.1 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
{
"expo": {
"name": "Stanford Daily",
"slug": "stanford-daily",
"owner": "stanforddaily",
"privacy": "public",
"sdkVersion": "35.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.3.1",
"orientation": "default",
"primaryColor": "#8C1515",
"icon": "./assets/icon.png",
"androidStatusBar": {
"barStyle": "light-content"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#8C1515"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "com.Stanford.Daily.App",
"buildNumber": "13",
"appStoreUrl": "https://itunes.apple.com/app/stanford-daily/id1341270063",
"supportsTablet": true
},
"android": {
"package": "com.Stanford.Daily.App",
"googleServicesFile": "./google-services.json",
"versionCode": 13,
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.Stanford.Daily.App",
"permissions": []
},
"web": {
"use": "nextjs"
}
}
}