-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
79 lines (70 loc) · 1.89 KB
/
app.config.js
File metadata and controls
79 lines (70 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const path = require("path");
// Set Expo Router environment variables early
process.env.EXPO_ROUTER_APP_ROOT = path.resolve(__dirname, "app");
process.env.EXPO_ROUTER_PROJECT_ROOT = __dirname;
process.env.EXPO_PROJECT_ROOT = __dirname;
module.exports = ({ config }) => {
return {
...config,
name: "Velvet Ladle",
slug: "VelvetLadle",
version: "2.1.0",
orientation: "default",
icon: "./assets/images/favicon_velvetLadle_large_128x128.png",
scheme: "velvetladle",
userInterfaceStyle: "automatic",
newArchEnabled: true,
// VelvetLadle's platform-specific configuration
ios: {
...(config.ios ?? {}),
config: {
...((config.ios && config.ios.config) ?? {}),
usesNonExemptEncryption: false,
},
infoPlist: {
...((config.ios && config.ios.infoPlist) ?? {}),
ITSAppUsesNonExemptEncryption: false,
},
supportsTablet: true,
bundleIdentifier: "com.tea4q.velvetladle",
},
android: {
package: "com.qtea.VelvetLadle",
adaptiveIcon: {
foregroundImage: "./assets/images/social_icon_velvetLadle_400x400.png",
backgroundColor: "#ffffff",
},
},
web: {
bundler: "metro",
output: "static",
favicon: "./assets/images/favicon_velvetLadle_small_48x48.png",
},
plugins: [
["expo-router"],
[
"expo-image-picker",
{
photosPermission:
"Allow VelvetLadle to access your photos for recipe images",
},
],
],
experiments: {
typedRoutes: true,
},
updates: {
enabled: true,
checkAutomatically: "ON_LOAD",
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/df5296c9-1e42-454b-924c-07dc23f4ed53",
},
runtimeVersion: "1.0.1",
owner: "qtea",
extra: {
eas: {
projectId: "df5296c9-1e42-454b-924c-07dc23f4ed53",
},
},
};
};