-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
49 lines (49 loc) · 1.56 KB
/
app.json
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
{
"expo": {
"name": "Code Compass",
"slug": "code-compass",
"description": "Code Compass is your comprehensive companion for all things programming, offering a rich repository of references and cheat sheets for various programming languages, tech stacks, and frameworks. Whether you're a seasoned developer seeking quick refreshers or a novice looking to dive into the world of coding, DevGuide provides the essential resources you need at your fingertips.",
"newArchEnabled": true,
"version": "1.0.0",
"scheme": "dev.soorya-u",
"orientation": "portrait",
"icon": "./src/assets/icons/logo.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./src/assets/icons/splash.png",
"resizeMode": "contain",
"backgroundColor": "#111111"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "dev.soorya_u.code_compass"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/icons/adaptive-icon.png",
"backgroundColor": "#111111"
},
"package": "dev.soorya_u.code_compass"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./src/assets/icons/favicon.png"
},
"plugins": ["expo-router", "expo-secure-store"],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "fc808edb-dd8f-4b3a-941c-fcd48d5a60ff"
}
},
"owner": "soorya-u"
}
}