-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
61 lines (61 loc) · 1.53 KB
/
app.json
File metadata and controls
61 lines (61 loc) · 1.53 KB
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
60
61
{
"expo": {
"scheme": "hackillinois",
"name": "HackIllinois",
"slug": "hackillinois",
"owner": "hackillinois",
"version": "2026.0.8",
"orientation": "portrait",
"icon": "./assets/logo.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash_screen.png",
"resizeMode": "cover",
"backgroundColor": "#11104A"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "org.hackillinois.ios",
"infoPlist": {
"NSCameraUsageDescription": "Allow camera access to scan QR codes.",
"NSBluetoothAlwaysUsageDescription": "Bluetooth is used to connect with nearby players for duels.",
"ITSAppUsesNonExemptEncryption": false
},
"entitlements": {
"aps-environment": "production"
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "org.hackillinois.android.release",
"googleServicesFile": "./google-services.json"
},
"web": {
"favicon": "./assets/logo.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-web-browser",
"expo-font",
[
"expo-notifications",
{
"icon": "./assets/logo.png",
"color": "#ffffff"
}
],
"./plugins/withWindowBackgroundColor"
],
"extra": {
"router": {},
"eas": {
"projectId": "873c594c-d13f-48ba-8d72-a57354b3980b"
}
}
}
}