-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) · 2.4 KB
/
Copy pathapp.json
File metadata and controls
86 lines (86 loc) · 2.4 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
77
78
79
80
81
82
83
84
85
86
{
"expo": {
"name": "DFX Wallet",
"slug": "dfx-wallet",
"owner": "dfxswiss",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"scheme": "dfxwallet",
"newArchEnabled": true,
"runtimeVersion": {
"policy": "appVersion"
},
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0A0A0A"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "wallet.dfx.swiss",
"appleTeamId": "Y4QBY6387T",
"deploymentTarget": "18.0",
"associatedDomains": ["webcredentials:dfx.swiss?mode=developer"],
"infoPlist": {
"NSBluetoothAlwaysUsageDescription": "Bluetooth is needed to connect to BitBox02 Nova hardware wallet.",
"NSBluetoothPeripheralUsageDescription": "Bluetooth is needed to connect to BitBox02 Nova hardware wallet.",
"NSFaceIDUsageDescription": "Face ID is used to unlock your wallet."
}
},
"android": {
"package": "swiss.dfx.wallet",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0A0A0A"
},
"edgeToEdgeEnabled": true,
"minSdkVersion": 34,
"permissions": [
"android.permission.BLUETOOTH_SCAN",
"android.permission.BLUETOOTH_CONNECT",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
]
},
"plugins": [
"expo-router",
"expo-dev-client",
"expo-localization",
"expo-secure-store",
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 34,
"compileSdkVersion": 36,
"buildToolsVersion": "36.0.0",
"targetSdkVersion": 35
},
"ios": {
"deploymentTarget": "18.0"
}
}
],
[
"expo-camera",
{
"cameraPermission": "Camera access is needed to scan QR codes."
}
],
"expo-local-authentication",
"./plugins/withSwiftConcurrency",
"./plugins/withAndroidSubprojects.js"
],
"extra": {
"router": {},
"eas": {
"projectId": "7aa24d4c-e4bf-4c89-9349-fed981e6c786"
}
}
}
}