-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
53 lines (53 loc) · 1.46 KB
/
Copy pathapp.config.js
File metadata and controls
53 lines (53 loc) · 1.46 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
export default {
expo: {
name: "passwordify",
slug: "your-app-name",
owner: "harshit345686",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/images/icon.png",
scheme: "myapp",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
ios: {
supportsTablet: true
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff"
},
package: "com.harshit.passwordify",
googleServicesFile: "./google-services.json"
},
web: {
bundler: "metro",
output: "static",
favicon: "./assets/images/favicon.png"
},
plugins: [
"expo-router",
"expo-secure-store",
[
"@react-native-firebase/app",
{
androidPackage: "com.harshit.passwordify"
}
]
],
experiments: {
typedRoutes: true
},
extra: {
stytchProjectId: process.env.STYTCH_PROJECT_ID,
stytchSecret: process.env.STYTCH_SECRET,
eas: {
projectId: "322c36a9-ad1a-4a7f-94ac-38557e33ee8e"
}
}
}
};