-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
63 lines (63 loc) · 1.91 KB
/
app.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"expo": {
"name": "Медиасейф",
"slug": "ultiappmobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"newArchEnabled": false,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0a0a0a"
},
"ios": {
"supportsTablet": false,
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Необходим доступ к галерее для импорта медиафайлов в зашифрованный сейф.",
"NSFaceIDUsageDescription": "Используется для быстрой разблокировки сейфа."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0a0a0a"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"minSdkVersion": 29,
"permissions": [
"android.permission.READ_MEDIA_IMAGES",
"android.permission.READ_MEDIA_VIDEO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"android.permission.RECORD_AUDIO"
],
"package": "com.vault.mediasafe"
},
"plugins": [
"expo-dev-client",
"expo-secure-store",
[
"expo-local-authentication",
{
"faceIDPermission": "Разрешите использование Face ID для разблокировки сейфа."
}
],
[
"expo-image-picker",
{
"photosPermission": "Необходим доступ к галерее для импорта медиафайлов."
}
],
"expo-video"
],
"extra": {
"eas": {
"projectId": "88ef988e-6b53-46c6-bf85-e8040a94bea3"
}
}
}
}