-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
58 lines (58 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
{
"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
}
}
}
},
"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
}
]
]
}
}