-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
113 lines (113 loc) · 3.29 KB
/
Copy pathapp.json
File metadata and controls
113 lines (113 loc) · 3.29 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
106
107
108
109
110
111
112
113
{
"expo": {
"name": "Pulse",
"slug": "pulse-camera",
"owner": "mieweb",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "pulsecam",
"userInterfaceStyle": "automatic",
"ios": {
"icon": "./assets/expo.icon",
"supportsTablet": true,
"bundleIdentifier": "com.mieweb.pulse",
"appleTeamId": "X5873NL7XM",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSCameraUsageDescription": "Pulse uses your camera to record videos.",
"NSMicrophoneUsageDescription": "Pulse uses your microphone to record audio with your videos."
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#F5F5F7",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"predictiveBackGestureEnabled": false,
"allowBackup": false,
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
],
"blockedPermissions": [
"android.permission.SYSTEM_ALERT_WINDOW"
],
"package": "com.mieweb.pulse",
"versionCode": 20000
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"backgroundColor": "#FFFFFF",
"android": {
"image": "./assets/images/splash-icon.png",
"imageWidth": 76
}
}
],
"expo-sqlite",
"expo-video",
"./plugins/with-disable-script-sandboxing",
"./plugins/with-video-trim",
"expo-image",
"expo-sharing",
"./plugins/with-strip-legacy-storage",
[
"expo-media-library",
{
"photosPermission": "Allow Pulse to access your photos to import videos into your drafts.",
"savePhotosPermission": "Allow Pulse to save exported videos to your photo library.",
"granularPermissions": [
"photo",
"video"
]
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow Pulse to access your photos to import videos into your drafts."
}
],
[
"expo-audio",
{
"microphonePermission": false
}
],
"expo-asset",
"expo-font",
"expo-secure-store",
[
"expo-build-properties",
{
"android": {
"enableMinifyInReleaseBuilds": true,
"enableShrinkResourcesInReleaseBuilds": true,
"extraProguardRules": "# whisper.rn — required by its README; JNI callbacks resolve these classes by name,\n# so minified release builds crash transcription without this keep rule.\n-keep class com.rnwhisper.** { *; }"
}
}
],
"expo-status-bar",
"expo-web-browser",
"expo-background-task",
"./plugins/with-ios-local-notifications-only",
"expo-notifications",
"./plugins/with-upload-foreground-service",
"./plugins/with-release-signing"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
}
}
}