-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.config.js
64 lines (64 loc) · 1.85 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
57
58
59
60
61
62
63
64
module.exports = {
android: {
adaptiveIcon: {
backgroundColor: "#FFFFFF",
foregroundImage: "./assets/adaptive-icon.png",
},
package: "weshipit.today.spacecraft",
playStoreUrl:
"https://play.google.com/store/apps/details?id=weshipit.today.spacecraft",
},
assetBundlePatterns: ["**/*"],
description: "Learning materials for the `react-native-bootcamp` repository.",
extra: {
eas: {
projectId: "012accc3-4ce5-4bae-9f4d-2f842489f07a",
},
storybookEnabled: process.env.STORYBOOK_ENABLED,
},
icon: "./assets/icon.png",
ios: {
appStoreUrl:
"https://apps.apple.com/fr/app/retail-shake-scanner/id1234567890",
bundleIdentifier: "weshipit.today.spacecraft",
supportsTablet: true,
},
name: "spacecraft",
orientation: "portrait",
owner: "weshipit",
plugins: [
[
"app-icon-badge",
{
// enable/ disable the plugin based on the environment (usually disabled for production builds)
badges: [
{
background: "#FF0000", // by default it will be black and we are only supporting hex format for colors
color: "white", // by default it will be white and the only color supported for now is white and black
text: process.env.ENVIRONMENT || "unkown", // banner text
type: "banner", // banner or ribbon
},
{
text: process.env.version,
type: "ribbon",
},
],
enabled: process.env.ENVIRONMENT === "production" ? false : true,
},
],
],
slug: "spacecraft",
splash: {
backgroundColor: "#ffffff",
image: "./assets/splash.png",
resizeMode: "contain",
},
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/012accc3-4ce5-4bae-9f4d-2f842489f07a",
},
version: "1.0.2",
web: {
favicon: "./assets/favicon.png",
},
};