-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.config.js
49 lines (49 loc) · 1.04 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
module.exports = {
name: "TimeOverflow",
description: "A time banking system.",
slug: "time-overflow",
platforms: [
"ios",
"android"
],
version: "1.1.0",
orientation: "portrait",
icon: "./assets/timeoverflow.png",
userInterfaceStyle: "light",
privacy: "public",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
notification: {
icon: "./assets/notifications.png"
},
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/e867ef10-6745-11e8-ac81-d5d46762b275"
},
assetBundlePatterns: [
"**/*"
],
ios: {
supportsTablet: true,
bundleIdentifier: "org.timeoverflow.mobileapp",
buildNumber: "1.1.0"
},
android: {
googleServicesFile: "./google-services.json",
package: "org.timeoverflow.mobileapp",
versionCode: 24,
},
extra: {
eas: {
projectId: "e867ef10-6745-11e8-ac81-d5d46762b275"
},
baseUrl: process.env.BASE_URL
},
runtimeVersion: {
policy: "sdkVersion"
},
newArchEnabled: true
}