-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathapp.json
More file actions
143 lines (143 loc) · 3.79 KB
/
app.json
File metadata and controls
143 lines (143 loc) · 3.79 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"expo": {
"name": "BSV Browser",
"slug": "bsv-browser",
"scheme": "bsv-browser",
"version": "1.4.5",
"orientation": "default",
"icon": "./assets/images/icon.png",
"userInterfaceStyle": "automatic",
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"./plugins/withWebBrowserEntitlement",
[
"./plugins/withXcodeLastUpgradeVersion",
{
"version": "2640"
}
],
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash.png",
"imageWidth": 1179,
"resizeMode": "contain",
"backgroundColor": "#000000"
}
],
"expo-secure-store",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static",
"useModularHeaders": true
}
}
],
"expo-sqlite",
"expo-localization",
"expo-web-browser",
"expo-camera",
"expo-font",
"expo-image",
"expo-sharing"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "435e9e20-dd2a-4be5-8684-af5809f913bb"
}
},
"android": {
"package": "org.bsvassociation.browser",
"permissions": [
"android.permission.INTERNET",
"android.permission.SYSTEM_ALERT_WINDOW",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
],
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https"
},
{
"scheme": "http"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
},
{
"action": "VIEW",
"data": [
{
"scheme": "peerpay"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "org.bsvassociation.browser",
"infoPlist": {
"NSCameraUsageDescription": "This app needs camera access to scan QR codes.",
"NSPhotoLibraryAddUsageDescription": "This app needs permission to save images to your photo library.",
"NSMicrophoneUsageDescription": "This app needs microphone access for video recording features.",
"NSFaceIDUsageDescription": "This app uses Face ID/Touch ID to securely authenticate you and protect your wallet.",
"ITSAppUsesNonExemptEncryption": false,
"CFBundleURLTypes": [
{
"CFBundleURLName": "org.bsvassociation.browser.web",
"CFBundleURLSchemes": [
"https",
"http"
]
},
{
"CFBundleURLName": "org.bsvassociation.browser.peerpay",
"CFBundleURLSchemes": [
"peerpay"
]
},
{
"CFBundleURLName": "org.bsvassociation.browser.pair",
"CFBundleURLSchemes": [
"bsv-browser"
]
}
],
"LSApplicationQueriesSchemes": [
"https",
"http",
"blob",
"data"
],
"NSLocationWhenInUseUsageDescription": "BSV Browser may request your location to enable features like discovering nearby devices/services and providing region-specific functionality. Your location is only used while the app is in use."
}
},
"owner": "bsvb"
}
}