-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
109 lines (109 loc) · 3.24 KB
/
app.json
File metadata and controls
109 lines (109 loc) · 3.24 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
{
"expo": {
"name": "QuckApp",
"slug": "quckapp",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"owner": "agilanshanthi",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.quckapp.app",
"infoPlist": {
"NSCameraUsageDescription": "QuckApp needs access to your camera for video calls and sending photos.",
"NSMicrophoneUsageDescription": "QuckApp needs access to your microphone for audio and video calls.",
"NSPhotoLibraryUsageDescription": "QuckApp needs access to your photos to send images.",
"UIBackgroundModes": [
"audio",
"voip",
"remote-notification"
],
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true,
"NSAllowsLocalNetworking": true
}
},
"bitcode": false
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.quckapp.app",
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.POST_NOTIFICATIONS",
"android.permission.VIBRATE",
"android.permission.BIND_TELECOM_CONNECTION_SERVICE",
"android.permission.FOREGROUND_SERVICE",
"android.permission.READ_PHONE_STATE",
"android.permission.CALL_PHONE",
"android.permission.MANAGE_OWN_CALLS",
"android.permission.READ_CALL_LOG",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.INTERNET",
"android.permission.SYSTEM_ALERT_WINDOW",
"android.permission.WAKE_LOCK",
"android.permission.BLUETOOTH"
],
"googleServicesFile": "./google-services.json"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/messaging",
"expo-av",
[
"expo-camera",
{
"cameraPermission": "Allow QuckApp to access your camera for video calls and photos."
}
],
[
"expo-notifications",
{
"icon": "./assets/notification-icon.png",
"color": "#0066FF",
"mode": "production"
}
],
[
"@config-plugins/react-native-webrtc",
{
"cameraPermission": "QuckApp needs camera access for video calls",
"microphonePermission": "QuckApp needs microphone access for audio and video calls"
}
],
[
"@config-plugins/react-native-callkeep",
{
"appName": "QuckApp",
"includesCallsInRecents": true,
"ringtoneSound": "ringtone.mp3"
}
],
"expo-secure-store"
],
"extra": {
"eas": {
"projectId": "f5b9bfd5-5f66-4183-9b04-f6fbe6b2fa88"
}
}
}
}