-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
47 lines (47 loc) · 1.38 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
export default () => ({
expo: {
name: "TravelMate",
slug: "travelmate",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#fff",
},
platforms: ["ios", "android"], // Block web compiling
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
bundleIdentifier: "com.rgarrido03.travelmate",
config: {
googleMapsApiKey: process.env.GOOGLE_MAPS_API_KEY,
},
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff",
},
package: "com.rgarrido03.travelmate",
config: {
googleMaps: {
apiKey: process.env.GOOGLE_MAPS_API_KEY,
},
},
},
extra: {
eas: {
projectId: "ed8ac1ae-e594-4880-aa5a-bede51f14e2c",
},
},
owner: "rgarrido03",
runtimeVersion: "1.0.0",
updates: {
url: "https://u.expo.dev/ed8ac1ae-e594-4880-aa5a-bede51f14e2c",
},
scheme: "travelmate",
},
});