-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
88 lines (88 loc) · 2.45 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
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
87
88
{
"expo": {
"name": "Opto Wallet",
"slug": "opto",
"version": "1.3.3",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "opto",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "xoth",
"project": "opto",
"authToken": "[sentry auth token]"
}
}
]
},
"ios": {
"bundleIdentifier": "app.opto.wallet",
"googleServicesFile": "./GoogleService-Info.plist",
"supportsTablet": true,
"buildNumber": "151",
"appStoreUrl": "https://apps.apple.com/us/app/opto-wallet/id6443854537",
"infoPlist": {
"NSFaceIDUsageDescription": "We need Face ID to make sure you are the owner of the wallet",
"NSCameraUsageDescription": "We need camera to scan QR code to transfer",
"NSBluetoothAlwaysUsageDescription": "We need use bluetooth to connect Ledger device"
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"package": "app.opto.wallet",
"googleServicesFile": "./google-services.json",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"versionCode": 151,
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"RECEIVE_BOOT_COMPLETED",
"SCHEDULE_EXACT_ALARM",
"BLUETOOTH_SCAN",
"BLUETOOTH_CONNECT",
"ACCESS_FINE_LOCATION",
"BLUETOOTH",
"BLUETOOTH_ADMIN"
]
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"sentry-expo",
[
"@config-plugins/react-native-ble-plx",
{
"isBackgroundEnabled": true,
"modes": ["peripheral", "central"],
"bluetoothAlwaysPermission": "Allow $(PRODUCT_NAME) to use bluetooth to connect Ledger",
"bluetoothPeripheralPermission": "Allow $(PRODUCT_NAME) to use bluetooth to connect Ledger"
}
]
],
"extra": {
"eas": {
"projectId": "[projectId]"
}
}
}
}