-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
52 lines (41 loc) · 1.42 KB
/
Copy pathapp.config.js
File metadata and controls
52 lines (41 loc) · 1.42 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
// This is a JavaScript module that exports a function.
// The function returns an object containing configuration options for the app.
module.exports = () => {
return {
// The name of the app
name: "EarthGuardian",
// An array of plugins used in the app
plugins: [
"sentry-expo",
"expo-localization",
"expo-asset",
"expo-font"
],
// The slug is a unique identifier for the app
slug: "EarthGuardian",
// The privacy setting for the app (e.g., "public" or "private")
privacy: "public",
// An array of platforms the app supports (e.g., "ios", "android")
platforms: ["ios"],
// The version number of the app
version: "0.1",
// The orientation of the app (e.g., "portrait" or "landscape")
orientation: "portrait",
// Configuration options for the splash screen
splash: {
// The path to the splash screen image
image: "./assets/images/splash.png",
// The resize mode for the splash screen image
resizeMode: "contain",
// The background color of the splash screen
backgroundColor: "#ffffff",
},
// Configuration options for app updates
updates: {
// The timeout value for falling back to the cache when an update fails
fallbackToCacheTimeout: 0,
},
// An array of patterns specifying which files should be included in the app's asset bundle
assetBundlePatterns: ["**/*"],
};
};