-
Notifications
You must be signed in to change notification settings - Fork 47
/
app.json
60 lines (60 loc) · 1.52 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
59
60
{
"expo": {
"name": "DeFiChain Wallet",
"description": "DeFi Blockchain Light Wallet for iOS, Android & Web.",
"slug": "wallet",
"owner": "defichain",
"version": "0.0.0",
"orientation": "portrait",
"icon": "./shared/assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"jsEngine": "hermes",
"splash": {
"image": "./shared/assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.defichain.app",
"buildNumber": "0.0.0",
"infoPlist": {
"NSFaceIDUsageDescription": "This app uses FaceID to enable privacy lock on device."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./shared/assets/images/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.defichain.app",
"versionCode": 0,
"intentFilters": [
{
"action": "VIEW",
"data": {
"scheme": "https"
},
"category": ["BROWSABLE", "DEFAULT"]
},
{
"autoVerify": true,
"action": "VIEW",
"data": {
"scheme": "http"
},
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"favicon": "./shared/assets/images/favicon.png",
"bundler": "metro"
}
}
}