-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 1.11 KB
/
app.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"expo": {
"name": "ImageCodeScannerExample",
"slug": "image-code-scanner-example",
"version": "1.0.0",
"orientation": "portrait",
"userInterfaceStyle": "light",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.imagecodescanner.example",
"infoPlist": {
"NSCameraUsageDescription": "This app needs access to camera to scan barcodes",
"NSPhotoLibraryUsageDescription": "This app needs access to photo library to select images for barcode scanning"
}
},
"android": {
"package": "com.imagecodescanner.example",
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE"
]
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you select images for barcode scanning.",
"cameraPermission": "The app accesses your camera to let you take photos for barcode scanning."
}
]
]
}
}