-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
52 lines (50 loc) · 1.16 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
// https://docs.expo.dev/versions/latest/config/app/
const MAJOR_VERSION_NUMBER = 3;
const MINOR_VERSION_NUMBER = 1;
const PATCH_VERSION_NUMBER = 20240704;
const FULL_APP_VERSION = MAJOR_VERSION_NUMBER + "." + MINOR_VERSION_NUMBER + "." + PATCH_VERSION_NUMBER;
const PACKAGE = "com.myplaceonline";
const BGCOLOR = "#ffffff";
export default {
name: "Myplaceonline",
slug: "myplaceonline",
owner: "myplaceonline",
version: FULL_APP_VERSION,
orientation: "portrait",
icon: "./assets/icon.png",
splash: {
image: "./assets/splash.png",
resizeMode: "cover",
backgroundColor: BGCOLOR,
},
updates: {
enabled: false,
},
assetBundlePatterns: [
"**/*"
],
ios: {
supportsTablet: true,
bundleIdentifier: PACKAGE,
buildNumber: FULL_APP_VERSION,
usesAppleSignIn: false,
},
android: {
package: PACKAGE,
versionCode: MAJOR_VERSION_NUMBER,
adaptiveIcon: {
foregroundImage: "./assets/icon.png",
backgroundColor: BGCOLOR
},
backgroundColor: BGCOLOR,
},
androidStatusBar: {
translucent: true,
},
web: {
favicon: "./assets/favicon.png",
},
developmentClient: {
silentLaunch: true,
},
}