-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (67 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
66
67
{
"expo": {
"name": "VDS Verify",
"slug": "vds-verify",
"version": "1.2.5",
"orientation": "portrait",
"icon": "./assets/icons/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"assetBundlePatterns": ["**/*"],
"locales": {
"fr": "./languages/french.json",
"en": "./languages/english.json"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"CFBundleAllowMixedLocalizations": true,
"CFBundleLocalizations": ["en", "fr"],
"CFBundleDevelopmentRegion": "fr"
},
"bundleIdentifier": "com.stelau.vdsverify",
"associatedDomains": ["applinks:vds-verify.stelau.com"]
},
"android": {
"permissions": ["android.permission.CAMERA"],
"package": "com.stelau.vdsverify",
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "vds-verify.stelau.com",
"pathPrefix": "/vds"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "This app uses the camera to capture QR codes."
}
],
"expo-localization",
[
"expo-splash-screen",
{
"backgroundColor": "#0069b4",
"image": "./assets/icons/icon.png",
"imageWidth": 100
}
]
],
"extra": {
"eas": {
"projectId": "2f5314e0-d7e8-4b1d-96bc-8c10bcb2e53d"
}
},
"owner": "stelau"
}
}