-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
92 lines (92 loc) · 2.67 KB
/
app.config.js
File metadata and controls
92 lines (92 loc) · 2.67 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
export default {
"expo": {
"name": "Connect",
"slug": "signal-clone",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/icon1.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#381fd1"
},
"plugins" : [
"@react-native-google-signin/google-signin",
"expo-secure-store",
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
"@stream-io/video-react-native-sdk",
[
"@config-plugins/react-native-webrtc",
{
// optionally you can add your own explanations for permissions on iOS
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone"
}
],
// 'expo-build-properties',
// {
// android: {
// extraMavenRepos: ['../../node_modules/@notifee/react-native/android/libs'],
// }
// },
],
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "host.expo.iosbuild",
"googleServicesFile": process.env.GOOGLE_SERVICES_INFOPLIST,
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon1.png",
"backgroundColor": "#381fd1"
},
"package": "com.huzaifa_037.connect",
// "googleServicesFile": process.env.GOOGLE_SERVICES_JSON,
"googleServicesFile": "./google-services.json",
"permissions": [
"android.permission.CAMERA",
"android.permission.CHANGE_NETWORK_STATE",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.RECORD_AUDIO",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.FOREGROUND_SERVICE",
"android.permission.BLUETOOTH",
"android.permission.BLUETOOTH_CONNECT",
"android.permission.POST_NOTIFICATIONS",
"android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION"
],
"plugins" : [
"expo-build-properties",
{
"android": {
"minSdkVersion": 24,
"compileSdkVersion": 34,
"targetSdkVersion": 33
}
}
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "bfb07209-f56a-40e5-8dd3-c8931a1c904f"
}
},
"packagerOpts": {
"config": "metro.config.js"
},
}
}