-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
52 lines (52 loc) · 1.17 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
module.exports = {
expo: {
scheme: "resqme",
name: "ResQme",
slug: "ResQme",
version: "1.0.0",
orientation: "portrait",
icon: "./src/assets/ResQme_Icon.png",
userInterfaceStyle: "light",
splash: {
image: "./src/assets/ResQme_splash.png",
resizeMode: "contain",
backgroundColor: "#D9D9D9",
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
},
android: {
package: "com.ResQ.me",
permissions: [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.FOREGROUND_SERVICE",
],
userInterfaceStyle: "light",
config: {
googleMaps: {
apiKey: process.env.GOOGLE_MAP_KEY,
},
},
},
web: {
favicon: "./src/assets/ResQme_favicon.png",
},
plugins: [
[
"expo-location",
{
locationAlwaysAndWhenInUsePermission:
"Allow $(PRODUCT_NAME) to use your location.",
},
],
],
extra: {
eas: {
projectId: "7439e976-f17d-4b78-a74e-6cc292acc4f9",
},
},
owner: "haberra",
},
};