-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
54 lines (49 loc) · 1.36 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
const IS_DEV = process.env.APP_VARIANT === 'development';
const getUniqueIdentifier = () => {
if (IS_DEV) {
return 'com.secretfilevariablerepro.SecretFileVariableRepro.dev';
}
return 'com.secretfilevariablerepro.SecretFileVariableRepro';
};
const getAppName = () => {
if (IS_DEV) {
return 'SecretFileVariableRepro Development';
}
return 'SecretFileVariableRepro';
};
export default {
"expo": {
name: getAppName(),
slug: "secretfilevariablerepro",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
newArchEnabled: true,
splash: {
image: "./assets/splash-icon.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
ios: {
supportsTablet: false,
bundleIdentifier: getUniqueIdentifier(),
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff"
},
package: getUniqueIdentifier(),
},
web: {
favicon: "./assets/favicon.png"
},
extra: {
eas: {
projectId: "7904c6f8-935f-414f-be4a-82a6d87768ef"
}
},
owner: "jack-gill-ths",
}
}