-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
53 lines (53 loc) · 1.26 KB
/
app.config.js
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
export default {
expo: {
name: "react-chatter",
slug: "react-chatter",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/images/logo.png",
userInterfaceStyle: "light",
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
bundleIdentifier: "eugenechevski.reactchatter",
googleServicesFile: process.env.GOOGLE_SERVICES_PLIST ?? "./GoogleService-Info.plist",
},
android: {
package: "eugenechevski.reactchatter",
googleServicesFile: process.env.GOOGLE_SERVICES_JSON ?? "./google-services.json",
},
web: {
bundler: "metro",
favicon: "./assets/images/logo.png",
},
owner: "eugenechevski",
extra: {
eas: {
projectId: "4642cea0-c9d7-4073-9b4f-8f3efaec2697",
},
},
plugins: [
"@react-native-firebase/app",
"@react-native-firebase/auth",
[
"expo-build-properties",
{
ios: {
useFrameworks: "static",
},
},
],
[
"expo-contacts",
{
"contactsPermission": "Allow $(PRODUCT_NAME) to access your contacts.",
}
],
"expo-router",
],
scheme: "reactchatter",
experiments: {
tsconfigPaths: true,
},
},
};