-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
99 lines (97 loc) · 2.6 KB
/
app.json
File metadata and controls
99 lines (97 loc) · 2.6 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
94
95
96
97
98
99
{
"expo": {
"name": "dormdash",
"slug": "dormdash",
"version": "1.0.0",
"sdkVersion": "52.0.0",
"orientation": "portrait",
"icon": "./assets/icons/ios-light.png",
"scheme": "myapp",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"icon": {
"dark": "./assets/icons/ios-dark.png",
"light": "./assets/icons/ios-light.png",
"tinted": "./assets/icons/ios-tinted.png"
},
"useFrameworks": "static",
"bundleIdentifier": "com.anonymous.dormdash",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icons/adaptive-icon.png",
"monochromeImage": "./assets/icons/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.anonymous.dormdash"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/icons/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/icons/splash-icon-dark.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"image": "./assets/icons/splash-icon-light.png",
"backgroundColor": "#000000"
}
}
],
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.895573352563-bglvrv3e9visj279hc9g157787jd4on3"
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow DormDash to use your location."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"firebaseApiKey": "${process.env.FIREBASE_API_KEY}",
"firebaseAuthDomain": "${process.env.FIREBASE_AUTH_DOMAIN}",
"firebaseProjectId": "${process.env.FIREBASE_PROJECT_ID}",
"firebaseStorageBucket": "${process.env.FIREBASE_STORAGE_BUCKET}",
"firebaseMessagingSenderId": "${process.env.FIREBASE_MESSAGING_SENDER_ID}",
"firebaseAppId": "${process.env.FIREBASE_APP_ID}",
"eas": {
"projectId": "134fae3a-2dff-4495-81c8-59deb4ff7768"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/134fae3a-2dff-4495-81c8-59deb4ff7768"
}
}
}