-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
34 lines (34 loc) · 927 Bytes
/
app.config.js
File metadata and controls
34 lines (34 loc) · 927 Bytes
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
module.exports = {
name: "AutoVault",
slug: "AutoVault",
version: "0.3.1",
orientation: "portrait",
icon: "./assets/images/icon.png",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
assetBundlePatterns: ["**/*"],
android: {
package: "com.ashwinjadhav818.AutoVault",
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff",
},
},
plugins: [
"expo-font",
"expo-router",
"@react-native-firebase/app",
"@react-native-firebase/auth",
"./plugins/selectContact.js",
],
extra: {
eas: {
projectId: "b37e22f1-6581-4c24-9467-a639ee327151",
},
},
};