-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
83 lines (81 loc) · 2.19 KB
/
app.config.js
File metadata and controls
83 lines (81 loc) · 2.19 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
import dotenv from 'dotenv';
dotenv.config();
export default {
expo: {
name: 'reflectionsprojections',
slug: 'reflectionsprojections',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/images/rp_logo_2025.png',
scheme: 'reflectionsprojections',
userInterfaceStyle: 'automatic',
newArchEnabled: true,
ios: {
supportsTablet: false,
bundleIdentifier: 'com.reflectionsprojections',
config: {
usesNonExemptEncryption: false,
},
googleServicesFile: './googleServices/GoogleService-Info-RP.plist',
infoPlist: {
CFBundleURLTypes: [
{
CFBundleURLSchemes: [
'reflectionsprojections',
'com.googleusercontent.apps.693438449476-tmppq76n7cauru3l0gvk32mufrd7eoq0',
],
},
],
UIBackgroundModes: ['remote-notification'],
},
},
android: {
adaptiveIcon: {
foregroundImage: './assets/images/rp-logo.png',
backgroundColor: '#000000',
},
package: 'com.reflectionsprojections',
googleServicesFile: './googleServices/google-services.json',
intentFilters: [
{
action: 'VIEW',
autoVerify: true,
data: [
{
scheme: 'com.googleusercontent.apps.693438449476-ggdmrch475gd9otkn76uo71cm0h5q2sf',
},
],
category: ['BROWSABLE', 'DEFAULT'],
},
],
},
web: {
bundler: 'metro',
output: 'static',
favicon: './assets/images/rp-logo.png',
},
plugins: [
'expo-router',
[
'expo-splash-screen',
{
image: './assets/images/rp-logo.png',
imageWidth: 200,
resizeMode: 'contain',
backgroundColor: '#000000',
},
],
'expo-font',
'@react-native-firebase/app',
'@react-native-firebase/messaging',
],
experiments: {
typedRoutes: true,
},
extra: {
iosGoogleClientId: process.env.IOS_OAUTH_GOOGLE_CLIENT_ID,
androidGoogleClientId: process.env.ANDROID_OAUTH_GOOGLE_CLIENT_ID,
apiUrl: process.env.API_URL || 'https://api.reflectionsprojections.org',
},
},
};