-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
93 lines (93 loc) · 2.35 KB
/
app.json
File metadata and controls
93 lines (93 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"expo": {
"name": "MedSIS",
"slug": "MSIS",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/swu-header.png",
"scheme": "medsisapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"projectId": "e4d72644-5c96-430c-babd-6066a17d7337",
"androidStatusBar": {
"backgroundColor": "#FFFFFF",
"barStyle": "light-content"
},
"splash": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#121212"
}
},
"ios": {
"supportsTablet": true,
"splash": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#121212"
}
},
"usesApplePushNotifications": true,
"bundleIdentifier": "com.marcelo12345.msis",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"edgeToEdgeEnabled": true,
"adaptiveIcon": {
"foregroundImage": "./assets/swu-header.png",
"backgroundColor": "#121212"
},
"splash": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/swu-header.png",
"resizeMode": "contain",
"backgroundColor": "#121212"
}
},
"permissions": [
"RECEIVE_BOOT_COMPLETED",
"WAKE_LOCK"
],
"package": "com.marcelo12345.msis",
"useNextNotificationsApi": true
},
"plugins": [
"expo-router",
"expo-splash-screen",
[
"expo-notifications",
{
"icon": "./assets/swu-header.png",
"color": "#ffffff",
"sounds": ["./assets/sounds/notification_sound.mp3"]
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "16bb301a-5eff-46d8-a70b-c9fc824b7f4f"
}
},
"runtimeVersion": "1.0.0",
"updates": {
"url": "https://u.expo.dev/16bb301a-5eff-46d8-a70b-c9fc824b7f4f"
}
}
}