-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.29 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.29 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
{
"expo": {
"name": "Healthlyst",
"slug": "healthlyst",
"version": "1.03",
"orientation": "portrait",
"icon": "./assets/icon-logo.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"scheme": "healthlyst",
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"usesAppleSignIn": true,
"bundleIdentifier": "com.get.healthlyst",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSCameraUsageDescription": "Allow Healthlyst to access your camera to scan homework.",
"NSMicrophoneUsageDescription": "Allow Healthlyst to access your microphone to record lectures.",
"NSPhotoLibraryUsageDescription": "We need access to your photo library so you can import images into notes.",
"NSUserNotificationsUsageDescription": "We need to send you reminders and updates about your notes and study sessions.",
"CFBundleURLTypes": [
{
"CFBundleURLName": "google",
"CFBundleURLSchemes": [
"com.googleusercontent.apps.1068808547856-vvkih0g9n1ioabv8hitqns5jvcnc98ic"
]
}
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.jsm.healthlyst",
"permissions": [
"RECEIVE_BOOT_COMPLETED",
"NOTIFICATIONS",
"SCHEDULE_EXACT_ALARM",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-font",
"expo-apple-authentication",
"expo-notifications",
"expo-updates",
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.1068808547856-vvkih0g9n1ioabv8hitqns5jvcnc98ic"
}
],
"expo-video",
"expo-audio"
],
"newArchEnabled": true,
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "7ce138d0-705a-44fb-880c-b00be427b07d"
}
},
"owner": "healthlyst"
}
}