-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
127 lines (125 loc) · 3.07 KB
/
Copy pathapp.config.ts
File metadata and controls
127 lines (125 loc) · 3.07 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { ConfigContext, ExpoConfig } from "@expo/config";
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
"name": "HackNet",
"slug": "HackNet",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "hacknet",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.shibamroy.hacknet",
"buildNumber": "2",
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon/foreground.png",
"backgroundColor": "#17171d"
},
"versionCode": 2,
"edgeToEdgeEnabled": true,
"googleServicesFile": process.env.GOOGLE_SERVICES_JSON ?? "./google-services.json",
"permissions": [
"android.permission.RECORD_AUDIO"
],
"package": "com.shibamroy.hacknet"
},
"notification": {
"icon": "./assets/images/notification-icon.png",
"color": "#ec3750"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-audio",
[
"expo-notifications",
{
"icon": "./assets/images/notification-icon.png",
"color": "#ec3750",
"defaultChannel": "default",
"sounds": [
"./assets/sounds/notification_ping.mp3",
],
"enableBackgroundRemoteNotifications": true
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to make posts, or to customize profile"
}
],
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#17171d"
}
],
"expo-web-browser",
[
"expo-video",
{
"supportsBackgroundPlayback": true,
"supportsPictureInPicture": true
}
],
[
"expo-font",
{
"fonts": [
"./assets/fonts/PhantomSans-Regular.otf"
],
"android": {
"fonts": [
{
"fontFamily": "PhantomSans",
"fontDefinitions": [
{
"path": "./assets/fonts/PhantomSans-Regular.otf",
"weight": 400,
"style": "normal"
},
{
"path": "./assets/fonts/PhantomSans-Italic.otf",
"weight": 400,
"style": "italic"
},
{
"path": "./assets/fonts/PhantomSans-Bold.otf",
"weight": 700
}
]
}
]
},
"ios": {
"fonts": [
"./assets/fonts/PhantomSans-Regular.otf",
"./assets/fonts/PhantomSans-Bold.otf",
"./assets/fonts/PhantomSans-Italic.otf"
]
}
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "14749a4f-8461-4113-8c2b-238775dfce1c"
}
}
});