-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
58 lines (58 loc) · 1.49 KB
/
Copy pathapp.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"expo": {
"name": "QR8",
"slug": "qr8",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/logos/qr8-logo.png",
"userInterfaceStyle": "dark",
"splash": {
"image": "./assets/images/logos/qr8-logo.png",
"resizeMode": "contain",
"backgroundColor": "#0A0712"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.qr8.app",
"buildNumber": "1",
"infoPlist": {
"NSCameraUsageDescription": "QR8 uses the camera to scan QR codes.",
"NSPhotoLibraryUsageDescription": "QR8 needs access to your photos to scan QR codes from images you choose.",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0A0712"
},
"package": "com.qr8.app",
"versionCode": 1,
"edgeToEdgeEnabled": true,
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_MEDIA_IMAGES"
]
},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "QR8 uses the camera to scan QR codes."
}
],
[
"expo-image-picker",
{
"photosPermission": "QR8 needs access to your photos to scan QR codes from images you choose."
}
],
"expo-sqlite",
"expo-splash-screen",
"expo-font"
]
}
}