-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
57 lines (57 loc) · 1.34 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
{
"expo": {
"name": "Onramp Demo Mobile",
"slug": "onramp-demo-mobile",
"scheme": "onrampdemo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/onramp.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/onramp.png",
"resizeMode": "contain",
"backgroundColor": "#0052FF"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.coinbase.onramp.demo",
"scheme": "onrampdemo",
"appleTeamId": "A8X4B658S4"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/onramp.png",
"backgroundColor": "#ffffff"
},
"package": "com.coinbase.onramp.demo",
"scheme": "onrampdemo"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "110693b4-babe-436f-9496-b38287772849"
}
},
"owner": "coinbase",
"plugins": [
"expo-secure-store",
"expo-font",
[
"expo-splash-screen",
{
"imageResizeMode": "contain",
"image": "./assets/images/onramp.png",
"backgroundColor": "#0052FF",
"imageWidth": 150,
"imageHeight": 150
}
]
]
}
}