forked from BlueWallet/BlueWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
56 lines (56 loc) · 1.43 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
{
"expo": {
"sdkVersion": "30.0.0",
"version": "3.0.0",
"privacy": "public",
"platforms": [
"ios"
],
"ios": {
"buildNumber": "95",
"supportsTablet": true,
"bundleIdentifier": "io.bluewallet.bluewallet",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Discover local stores nearby that accept Bitcoin",
"NSCameraUsageDescription": "Allow BlueWallet to scan QR codes",
"ITSAppUsesNonExemptEncryption": false
}
},
"name": "Blue Wallet",
"description": "Bitcoin wallet app. Alpha version (iOS only)",
"slug": "bluewallet",
"githubUrl": "https://github.com/BlueWallet/BlueWallet",
"orientation": "portrait",
"primaryColor": "#00aced",
"icon": "img/icon.png",
"notification": {
"icon": "https://s3.amazonaws.com/exp-us-standard/placeholder-push-icon.png",
"color": "#000000"
},
"splash": {
"backgroundColor": "#FFFFFF",
"image": "./img/splash/splash.png"
},
"android": {
"package": "io.bluewallet.bluewallet"
},
"updates": {
"enabled": false
},
"assetBundlePatterns": [
"**/*"
],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "bluewallet",
"project": "bluewallet",
"authToken": "sentry_api_key"
}
}
]
}
}
}