-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
81 lines (79 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// https://docs.expo.dev/versions/latest/config/app/
const MAJOR_VERSION_NUMBER = 2;
const MINOR_VERSION_NUMBER = 1;
const PATCH_VERSION_NUMBER = 20221110;
const FULL_APP_VERSION = MAJOR_VERSION_NUMBER + "." + MINOR_VERSION_NUMBER + "." + PATCH_VERSION_NUMBER;
const PACKAGE = "com.findhumane.manifestcrash";
const BGCOLOR = "#ffffff";
export default {
name: "manifestcrash",
slug: "manifestcrash",
owner: "findhumane",
version: FULL_APP_VERSION,
orientation: "portrait",
icon: "./assets/icon.png",
splash: {
image: "./assets/splash.png",
resizeMode: "cover",
backgroundColor: "#00000000",
},
updates: {
enabled: false,
url: "https://u.expo.dev/9dba7f74-3e3b-489c-b3a7-ce7bcb75f582"
},
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
},
config: {
googleMaps: {
apiKey: "test"
}
},
permissions: [
"ACCESS_COARSE_LOCATION",
],
backgroundColor: BGCOLOR,
},
androidStatusBar: {
translucent: true,
backgroundColor: "#00000000",
},
web: {
favicon: "./assets/favicon.png",
build: {
babel: {
include: [
"@ui-kitten/components"
]
}
}
},
developmentClient: {
silentLaunch: true,
},
extra: {
test: "Test data",
googleWebApiKey: "test",
googleWebApiKeyServers: "test",
googleNoRestrictionsKey: "test",
eas: {
projectId: "9dba7f74-3e3b-489c-b3a7-ce7bcb75f582"
}
},
runtimeVersion: {
policy: "sdkVersion"
}
}