-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
102 lines (102 loc) · 3.64 KB
/
Copy pathapp.json
File metadata and controls
102 lines (102 loc) · 3.64 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
{
"expo": {
"name": "Airhop",
"slug": "airhop",
"scheme": "airhop",
"version": "0.9.15",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"icon": "./assets/images/icon.png",
"plugins": [
[
"expo-navigation-bar",
{
"enforceContrast": false
}
],
[
"expo-image-picker",
{
"photosPermission": "Airhop accesses your photo library to share images and videos over the mesh.",
"cameraPermission": "Airhop uses the camera to scan a contact's QR code, and to capture photos and videos to share with nearby peers."
}
],
[
"expo-camera",
{
"cameraPermission": "Airhop uses the camera to scan a contact's QR code, and to capture photos and videos to share with nearby peers."
}
],
[
"expo-audio",
{
"microphonePermission": "Airhop uses the microphone to record voice notes and to carry live voice to nearby peers."
}
],
[
"expo-media-library",
{
"savePhotosPermission": "Airhop saves photos and videos to your photo library when you choose to save one, and when you download your QR code.",
"isAccessMediaLocationEnabled": false
}
],
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26
},
"ios": {
"deploymentTarget": "16.4"
}
}
]
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "org.onemindlabs.airhop",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSBluetoothAlwaysUsageDescription": "Airhop uses Bluetooth to communicate with nearby devices on the mesh.",
"NSBluetoothPeripheralUsageDescription": "Airhop uses Bluetooth to advertise your presence to nearby peers.",
"NSLocalNetworkUsageDescription": "Airhop uses the local network to connect directly to nearby devices for high-bandwidth transfers (video, large files).",
"NSLocationWhenInUseUsageDescription": "Airhop uses your approximate location to place you in nearby area channels (block, city, region). Your exact position never leaves your device.",
"NSCameraUsageDescription": "Airhop uses the camera to scan a contact's QR code, and to capture photos and videos to share with nearby peers.",
"NSMicrophoneUsageDescription": "Airhop uses the microphone to record voice notes and to carry live voice to nearby peers.",
"NSPhotoLibraryUsageDescription": "Airhop accesses your photo library to share images and videos over the mesh.",
"NSPhotoLibraryAddUsageDescription": "Airhop saves photos and videos to your photo library when you choose to save one, and when you download your QR code.",
"NSBonjourServices": ["_airhop-mesh._tcp"],
"UIBackgroundModes": ["bluetooth-central", "bluetooth-peripheral"]
}
},
"android": {
"package": "org.onemindlabs.airhop",
"allowBackup": false,
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_NETWORK_STATE",
"ACCESS_WIFI_STATE",
"BLUETOOTH",
"BLUETOOTH_ADMIN",
"BLUETOOTH_ADVERTISE",
"BLUETOOTH_CONNECT",
"BLUETOOTH_SCAN",
"CAMERA",
"CHANGE_WIFI_STATE",
"POST_NOTIFICATIONS",
"READ_MEDIA_IMAGES",
"READ_MEDIA_VIDEO",
"RECORD_AUDIO"
]
},
"experiments": {
"typedRoutes": false
}
}
}