-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
105 lines (105 loc) · 3.01 KB
/
app.json
File metadata and controls
105 lines (105 loc) · 3.01 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
103
104
105
{
"expo": {
"name": "OpenNotes",
"slug": "open-notes",
"version": "1.0",
"scheme": "opennotes",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#F7F7F4"
},
"ios": {
"bundleIdentifier": "com.builderpro.opennotes",
"icon": "./assets/icon.png",
"buildNumber": "6",
"supportsTablet": true,
"infoPlist": {
"NSPhotoLibraryUsageDescription": "OpenNotes needs access to your photo library so you can insert images into your notes.",
"NSCameraUsageDescription": "OpenNotes needs camera access so you can capture images directly into your notes.",
"LSSupportsOpeningDocumentsInPlace": true,
"CFBundleDocumentTypes": [
{
"CFBundleTypeName": "PDF Document",
"CFBundleTypeRole": "Editor",
"LSItemContentTypes": [
"com.adobe.pdf"
],
"LSHandlerRank": "Owner"
}
],
"UTImportedTypeDeclarations": [
{
"UTTypeIdentifier": "com.adobe.pdf",
"UTTypeConformsTo": [
"public.data",
"public.composite-content"
],
"UTTypeDescription": "Portable Document Format (PDF)",
"UTTypeTagSpecification": {
"public.filename-extension": [
"pdf"
],
"public.mime-type": [
"application/pdf"
]
}
}
]
}
},
"android": {
"package": "com.builderpro.opennotes",
"versionCode": 6,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#F7F7F4"
},
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.CAMERA"
],
"blockedPermissions": [
"android.permission.RECORD_AUDIO",
"android.permission.SYSTEM_ALERT_WINDOW"
],
"intentFilters": [
{
"action": "android.intent.action.VIEW",
"category": [
"android.intent.category.DEFAULT",
"android.intent.category.BROWSABLE"
],
"data": {
"mimeType": "application/pdf"
}
},
{
"action": "android.intent.action.SEND",
"category": [
"android.intent.category.DEFAULT"
],
"data": {
"mimeType": "application/pdf"
}
}
]
},
"plugins": [
"expo-router",
"expo-dev-client",
[
"expo-image-picker",
{
"photosPermission": "OpenNotes accesses your photos to let you insert them into notes.",
"cameraPermission": "OpenNotes accesses the camera to let you capture images into notes."
}
]
]
}
}