-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
70 lines (70 loc) · 1.95 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
{
"expo": {
"jsEngine": "hermes",
"extra": {
"eas": {
"projectId": "f049deed-3b0a-4921-9009-0bf8f19b8daf"
}
},
"owner": "casperholders",
"name": "Casper Holders",
"slug": "casperholders-mobile",
"platforms": [
"android",
"ios"
],
"plugins": [
"./gradle-config-jnilibs",
"./gradle-config",
[
"@config-plugins/react-native-ble-plx",
{
"isBackgroundEnabled": true,
"modes": [
"peripheral",
"central"
],
"bluetoothAlwaysPermission": "Allow $(PRODUCT_NAME) to connect to bluetooth devices. This is only needed to detect your Ledger device."
}
]
],
"orientation": "portrait",
"icon": "./assets/icon.png",
"backgroundColor": "#00012a",
"primaryColor": "#00126b",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#00012a"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"android": {
"package": "com.casperholders.wallet",
"permissions": [
"BLUETOOTH",
"BLUETOOTH_ADMIN",
"BLUETOOTH_SCAN",
"BLUETOOTH_CONNECT"
],
"versionCode": 33
},
"ios": {
"bundleIdentifier": "com.casperholders.wallet",
"supportsTablet": true,
"buildNumber": "33",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSLocationAlwaysAndWhenInUseUsageDescription": "Allow $(PRODUCT_NAME) to access your location. This is only needed to detect your Ledger device.",
"NSLocationAlwaysUsageDescription": "Allow $(PRODUCT_NAME) to access your location. This is only needed to detect your Ledger device.",
"NSLocationWhenInUseUsageDescription": "Allow $(PRODUCT_NAME) to access your location. This is only needed to detect your Ledger device."
}
}
}
}