This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.json
106 lines (106 loc) · 2.53 KB
/
app.config.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"expo": {
"name": "UK DanceBlue",
"description": "University of Kentucky DanceBlue Mobile Application",
"slug": "danceblue-mobile",
"privacy": "unlisted",
"owner": "university-of-kentucky-danceblue",
"scheme": "danceblue",
"jsEngine": "hermes",
"notification": {
"icon": "./assets/app/icon-2.png"
},
"platforms": [
"ios",
"android"
],
"orientation": "portrait",
"icon": "./assets/app/icon-2.png",
"splash": {
"image": "./assets/app/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/crashlytics",
[
"expo-calendar",
{
"calendarPermission": "You can add events to your calendar from the events tab"
}
],
"expo-camera",
"expo-av",
"expo-file-system",
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to allow you to submit images for various DanceBlue activities.",
"cameraPermission": "The app accesses your camera to allow you to submit images for various DanceBlue activities."
}
],
"expo-splash-screen",
"expo-dev-client",
"expo-updates",
[
"expo-notifications",
{
"icon": "./assets/app/icon-2.png",
"color": "#ffffff"
}
],
"./config-plugins/rnf-disable-ai-id-support.plugin"
],
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD"
},
"assetBundlePatterns": [
"assets/**"
],
"ios": {
"supportsTablet": true,
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSRemindersUsageDescription": "Users may add DanceBlue events to their calendar.",
"UIBackgroundModes": [
"audio"
]
},
"associatedDomains": [
"https://www.danceblue.org"
]
},
"android": {
"permissions": [
"WRITE_CALENDAR",
"READ_CALENDAR",
"CAMERA"
],
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "https",
"host": "*.danceblue.org",
"pathPrefix": "/redirect"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"extra": {
"eas": {
"projectId": "86042d7a-cd35-415c-87ed-f53c008b3827"
}
}
}
}