-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
56 lines (56 loc) · 1.33 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
54
55
56
module.exports = {
expo: {
name: "What Should I Wear Today?",
slug: "whatshouldiweartoday",
version: "1.0.0",
orientation: "portrait",
icon: "./src/assets/images/icon_man_winter_jumper.png",
scheme: "myapp",
userInterfaceStyle: "automatic",
splash: {
image: "./src/assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#457b9d",
},
assetBundlePatterns: ["**/*"],
android: {
package: "com.mthaak.whatshouldiweartoday",
versionCode: 1,
permissions: [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"FOREGROUND_SERVICE",
],
},
ios: {
bundleIdentifier: "com.mthaak.whatshouldiweartoday",
buildNumber: "1.0.0",
supportsTablet: false,
},
web: {
favicon: "./src/assets/images/favicon.png",
},
plugins: [
[
"expo-updates",
{
username: "mthaak",
},
],
],
updates: {
url: "https://u.expo.dev/d6bc1442-7252-4039-97c5-a359e22e2fe7",
},
runtimeVersion: {
policy: "appVersion",
},
extra: {
buildDate:
new Date().toISOString().replace("T", " ").substring(0, 19) + " UTC",
eas: {
projectId: "d6bc1442-7252-4039-97c5-a359e22e2fe7",
},
},
},
};