-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
76 lines (76 loc) · 1.95 KB
/
app.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"expo": {
"name": "Mobile Inbox",
"slug": "mobile-inbox",
"version": "1.0.0",
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png"
},
"package": "com.magicbell.mobileinbox",
"googleServicesFile": "./google-services.json",
"usesCleartextTraffic": true
},
"ios": {
"appleTeamId": "7847W99F5L",
"bundleIdentifier": "com.magicbell.mobile-inbox",
"config": {
"usesNonExemptEncryption": false
},
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": false,
"NSExceptionDomains": {
"localhost": {
"NSExceptionAllowsInsecureHTTPLoads": true
}
}
},
"associatedDomains": ["applinks:magicbell.com"]
},
"icon": "./assets/images/icon.png",
"scheme": "x-magicbell-review",
"plugins": [
[
"expo-font",
{
"fonts": [
"./assets/fonts/Inter-Black.ttf",
"./assets/fonts/Inter-Bold.ttf",
"./assets/fonts/Inter-ExtraBold.ttf",
"./assets/fonts/Inter-ExtraLight.ttf",
"./assets/fonts/Inter-Light.ttf",
"./assets/fonts/Inter-Medium.ttf",
"./assets/fonts/Inter-Regular.ttf",
"./assets/fonts/Inter-SemiBold.ttf",
"./assets/fonts/Inter-Thin.ttf"
]
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#1D1F29",
"image": "./assets/images/splash.png",
"imageWidth": 1024
}
],
[
"expo-build-properties",
{
"android": {
"kotlinVersion": "1.9.25",
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"buildToolsVersion": "35.0.0"
}
}
]
],
"extra": {
"eas": {
"projectId": "4f1598aa-e38b-4785-b752-b99fe65c93b5"
}
},
"owner": "niyabits-mb"
}
}