-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
59 lines (59 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"expo": {
"name": "Lynbrook High School",
"owner": "lynbrookhs",
"slug": "lhs-app",
"version": "2.3.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "lhs",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#033265"
},
"primaryColor": "#043265",
"updates": {
"fallbackToCacheTimeout": 5000,
"url": "https://u.expo.dev/292b39d0-78fe-49f6-b287-831989dafb2f"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "org.fuhsd.lhs.app",
"buildNumber": "2.3.0",
"infoPlist": {
"NSCameraUsageDescription": "Allow camera access to scan barcodes and get spirit points for events."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#033265"
},
"package": "org.fuhsd.lhs.app",
"versionCode": 27,
"permissions": ["CAMERA"],
"googleServicesFile": "./google-services.json"
},
"extra": {
"eas": {
"projectId": "292b39d0-78fe-49f6-b287-831989dafb2f"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"plugins": [
[
"expo-notifications",
{
"icon": "./assets/images/icon.png",
"color": "#ffffff"
}
]
],
"originalFullName": "@lynbrookhs/lhs-app"
}
}