packages = new PackageList(this).getPackages();
27 | // Packages that cannot be autolinked yet can be added manually here, for example:
28 | // packages.add(new MyReactNativePackage());
29 | return packages;
30 | }
31 |
32 | @Override
33 | protected String getJSMainModuleName() {
34 | return "index";
35 | }
36 | };
37 |
38 | @Override
39 | public ReactNativeHost getReactNativeHost() {
40 | return mReactNativeHost;
41 | }
42 |
43 | @Override
44 | public void onCreate() {
45 | super.onCreate();
46 | SoLoader.init(this, /* native exopackage */ false);
47 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
48 | }
49 |
50 | /**
51 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
52 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
53 | *
54 | * @param context
55 | * @param reactInstanceManager
56 | */
57 | private static void initializeFlipper(
58 | Context context, ReactInstanceManager reactInstanceManager) {
59 | if (BuildConfig.DEBUG) {
60 | try {
61 | /*
62 | We use reflection here to pick up the class that initializes Flipper,
63 | since Flipper library is not available in release mode
64 | */
65 | Class> aClass = Class.forName("com.videocall.ReactNativeFlipper");
66 | aClass
67 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
68 | .invoke(null, context, reactInstanceManager);
69 | } catch (ClassNotFoundException e) {
70 | e.printStackTrace();
71 | } catch (NoSuchMethodException e) {
72 | e.printStackTrace();
73 | } catch (IllegalAccessException e) {
74 | e.printStackTrace();
75 | } catch (InvocationTargetException e) {
76 | e.printStackTrace();
77 | }
78 | }
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if "%ERRORLEVEL%"=="0" goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/videocall/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.videocall;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | public class ReactNativeFlipper {
28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
29 | if (FlipperUtils.shouldEnableFlipper(context)) {
30 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
31 |
32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
33 | client.addPlugin(new ReactFlipperPlugin());
34 | client.addPlugin(new DatabasesFlipperPlugin(context));
35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
36 | client.addPlugin(CrashReporterPlugin.getInstance());
37 |
38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
39 | NetworkingModule.setCustomClientBuilder(
40 | new NetworkingModule.CustomClientBuilder() {
41 | @Override
42 | public void apply(OkHttpClient.Builder builder) {
43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
44 | }
45 | });
46 | client.addPlugin(networkFlipperPlugin);
47 | client.start();
48 |
49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
50 | // Hence we run if after all native modules have been initialized
51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
52 | if (reactContext == null) {
53 | reactInstanceManager.addReactInstanceEventListener(
54 | new ReactInstanceManager.ReactInstanceEventListener() {
55 | @Override
56 | public void onReactContextInitialized(ReactContext reactContext) {
57 | reactInstanceManager.removeReactInstanceEventListener(this);
58 | reactContext.runOnNativeModulesQueueThread(
59 | new Runnable() {
60 | @Override
61 | public void run() {
62 | client.addPlugin(new FrescoFlipperPlugin());
63 | }
64 | });
65 | }
66 | });
67 | } else {
68 | client.addPlugin(new FrescoFlipperPlugin());
69 | }
70 | }
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/ios/VideoCall.xcodeproj/xcshareddata/xcschemes/VideoCall.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/src/screens/IncomingCallScreen/index.js:
--------------------------------------------------------------------------------
1 | import React, {useEffect, useState} from 'react';
2 | import {View, Text, StyleSheet, ImageBackground, Pressable} from 'react-native';
3 | import bg from '../../../assets/images/ios_bg.png';
4 | import Ionicons from 'react-native-vector-icons/Ionicons';
5 | import Entypo from 'react-native-vector-icons/Entypo';
6 | import Feather from 'react-native-vector-icons/Feather';
7 | import {useRoute, useNavigation} from '@react-navigation/native';
8 | import {Voximplant} from 'react-native-voximplant';
9 |
10 | const IncomingCallScreen = () => {
11 | const [caller, setCaller] = useState('');
12 | const route = useRoute();
13 | const navigation = useNavigation();
14 | const {call} = route.params;
15 |
16 | useEffect(() => {
17 | setCaller(call.getEndpoints()[0].displayName);
18 |
19 | call.on(Voximplant.CallEvents.Disconnected, callEvent => {
20 | navigation.navigate('Contacts');
21 | });
22 |
23 | return () => {
24 | call.off(Voximplant.CallEvents.Disconnected);
25 | };
26 | }, []);
27 |
28 | const onDecline = () => {
29 | call.decline();
30 | };
31 |
32 | const onAccept = () => {
33 | navigation.navigate('Calling', {
34 | call,
35 | isIncomingCall: true,
36 | });
37 | };
38 |
39 | return (
40 |
41 | {caller}
42 | WhatsApp video...
43 |
44 |
45 |
46 |
47 | Remind me
48 |
49 |
50 |
51 | Message
52 |
53 |
54 |
55 |
56 | {/* Decline Button */}
57 |
58 |
59 |
60 |
61 | Decline
62 |
63 |
64 | {/* Accept Button */}
65 |
66 |
68 |
69 |
70 | Accept
71 |
72 |
73 |
74 | );
75 | };
76 |
77 | const styles = StyleSheet.create({
78 | name: {
79 | fontSize: 30,
80 | fontWeight: 'bold',
81 | color: 'white',
82 | marginTop: 100,
83 | marginBottom: 15,
84 | },
85 | phoneNumber: {
86 | fontSize: 20,
87 | color: 'white',
88 | },
89 | bg: {
90 | backgroundColor: 'red',
91 | flex: 1,
92 | alignItems: 'center',
93 | padding: 10,
94 | paddingBottom: 50,
95 | },
96 |
97 | row: {
98 | width: '100%',
99 | flexDirection: 'row',
100 | justifyContent: 'space-around',
101 | },
102 | iconContainer: {
103 | alignItems: 'center',
104 | marginVertical: 20,
105 | },
106 | iconText: {
107 | color: 'white',
108 | marginTop: 10,
109 | },
110 | iconButtonContainer: {
111 | backgroundColor: 'red',
112 | padding: 15,
113 | borderRadius: 50,
114 | margin: 10,
115 | },
116 | });
117 |
118 | export default IncomingCallScreen;
119 |
--------------------------------------------------------------------------------
/ios/VideoCall/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
24 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 |
86 | # Determine the Java command to use to start the JVM.
87 | if [ -n "$JAVA_HOME" ] ; then
88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
89 | # IBM's JDK on AIX uses strange locations for the executables
90 | JAVACMD="$JAVA_HOME/jre/sh/java"
91 | else
92 | JAVACMD="$JAVA_HOME/bin/java"
93 | fi
94 | if [ ! -x "$JAVACMD" ] ; then
95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
96 |
97 | Please set the JAVA_HOME variable in your environment to match the
98 | location of your Java installation."
99 | fi
100 | else
101 | JAVACMD="java"
102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
103 |
104 | Please set the JAVA_HOME variable in your environment to match the
105 | location of your Java installation."
106 | fi
107 |
108 | # Increase the maximum file descriptors if we can.
109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
110 | MAX_FD_LIMIT=`ulimit -H -n`
111 | if [ $? -eq 0 ] ; then
112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
113 | MAX_FD="$MAX_FD_LIMIT"
114 | fi
115 | ulimit -n $MAX_FD
116 | if [ $? -ne 0 ] ; then
117 | warn "Could not set maximum file descriptor limit: $MAX_FD"
118 | fi
119 | else
120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
121 | fi
122 | fi
123 |
124 | # For Darwin, add options to specify how the application appears in the dock
125 | if $darwin; then
126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
127 | fi
128 |
129 | # For Cygwin or MSYS, switch paths to Windows format before running java
130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133 |
134 | JAVACMD=`cygpath --unix "$JAVACMD"`
135 |
136 | # We build the pattern for arguments to be converted via cygpath
137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
138 | SEP=""
139 | for dir in $ROOTDIRSRAW ; do
140 | ROOTDIRS="$ROOTDIRS$SEP$dir"
141 | SEP="|"
142 | done
143 | OURCYGPATTERN="(^($ROOTDIRS))"
144 | # Add a user-defined pattern to the cygpath arguments
145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
147 | fi
148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
149 | i=0
150 | for arg in "$@" ; do
151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
153 |
154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
156 | else
157 | eval `echo args$i`="\"$arg\""
158 | fi
159 | i=`expr $i + 1`
160 | done
161 | case $i in
162 | 0) set -- ;;
163 | 1) set -- "$args0" ;;
164 | 2) set -- "$args0" "$args1" ;;
165 | 3) set -- "$args0" "$args1" "$args2" ;;
166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
172 | esac
173 | fi
174 |
175 | # Escape application args
176 | save () {
177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
178 | echo " "
179 | }
180 | APP_ARGS=`save "$@"`
181 |
182 | # Collect all arguments for the java command, following the shell quoting and substitution rules
183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
184 |
185 | exec "$JAVACMD" "$@"
186 |
--------------------------------------------------------------------------------
/src/screens/CallingScreen/index.js:
--------------------------------------------------------------------------------
1 | import React, {useEffect, useState, useRef} from 'react';
2 | import {
3 | View,
4 | Text,
5 | StyleSheet,
6 | Pressable,
7 | PermissionsAndroid,
8 | Alert,
9 | Platform,
10 | } from 'react-native';
11 | import CallActionBox from '../../components/CallActionBox';
12 | import Ionicons from 'react-native-vector-icons/Ionicons';
13 | import {useNavigation, useRoute} from '@react-navigation/core';
14 | import {Voximplant} from 'react-native-voximplant';
15 |
16 | const permissions = [
17 | PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,
18 | PermissionsAndroid.PERMISSIONS.CAMERA,
19 | ];
20 |
21 | const CallingScreen = () => {
22 | const [permissionGranted, setPermissionGranted] = useState(false);
23 | const [callStatus, setCallStatus] = useState('Initializing...');
24 | const [localVideoStreamId, setLocalVideoStreamId] = useState('');
25 | const [remoteVideoStreamId, setRemoteVideoStreamId] = useState('');
26 |
27 | const navigation = useNavigation();
28 | const route = useRoute();
29 |
30 | const {user, call: incomingCall, isIncomingCall} = route?.params;
31 |
32 | const voximplant = Voximplant.getInstance();
33 |
34 | const call = useRef(incomingCall);
35 | const endpoint = useRef(null);
36 |
37 | const goBack = () => {
38 | navigation.pop();
39 | };
40 |
41 | useEffect(() => {
42 | const getPermissions = async () => {
43 | const granted = await PermissionsAndroid.requestMultiple(permissions);
44 | const recordAudioGranted =
45 | granted[PermissionsAndroid.PERMISSIONS.RECORD_AUDIO] === 'granted';
46 | const cameraGranted =
47 | granted[PermissionsAndroid.PERMISSIONS.CAMERA] === 'granted';
48 | if (!cameraGranted || !recordAudioGranted) {
49 | Alert.alert('Permissions not granted');
50 | } else {
51 | setPermissionGranted(true);
52 | }
53 | };
54 |
55 | if (Platform.OS === 'android') {
56 | getPermissions();
57 | } else {
58 | setPermissionGranted(true);
59 | }
60 | }, []);
61 |
62 | useEffect(() => {
63 | if (!permissionGranted) {
64 | return;
65 | }
66 |
67 | const callSettings = {
68 | video: {
69 | sendVideo: true,
70 | receiveVideo: true,
71 | },
72 | };
73 |
74 | const makeCall = async () => {
75 | call.current = await voximplant.call(user.user_name, callSettings);
76 | subscribeToCallEvents();
77 | };
78 |
79 | const answerCall = async () => {
80 | subscribeToCallEvents();
81 | endpoint.current = call.current.getEndpoints()[0];
82 | subscribeToEndpointEvent();
83 | call.current.answer(callSettings);
84 | };
85 |
86 | const subscribeToCallEvents = () => {
87 | call.current.on(Voximplant.CallEvents.Failed, callEvent => {
88 | showError(callEvent.reason);
89 | });
90 | call.current.on(Voximplant.CallEvents.ProgressToneStart, callEvent => {
91 | setCallStatus('Calling...');
92 | });
93 | call.current.on(Voximplant.CallEvents.Connected, callEvent => {
94 | setCallStatus('Connected');
95 | });
96 | call.current.on(Voximplant.CallEvents.Disconnected, callEvent => {
97 | navigation.navigate('Contacts');
98 | });
99 | call.current.on(
100 | Voximplant.CallEvents.LocalVideoStreamAdded,
101 | callEvent => {
102 | setLocalVideoStreamId(callEvent.videoStream.id);
103 | },
104 | );
105 | call.current.on(Voximplant.CallEvents.EndpointAdded, callEvent => {
106 | endpoint.current = callEvent.endpoint;
107 | subscribeToEndpointEvent();
108 | });
109 | };
110 |
111 | const subscribeToEndpointEvent = async () => {
112 | endpoint.current.on(
113 | Voximplant.EndpointEvents.RemoteVideoStreamAdded,
114 | endpointEvent => {
115 | setRemoteVideoStreamId(endpointEvent.videoStream.id);
116 | },
117 | );
118 | };
119 |
120 | const showError = reason => {
121 | Alert.alert('Call failed', `Reason: ${reason}`, [
122 | {
123 | text: 'Ok',
124 | onPress: navigation.navigate('Contacts'),
125 | },
126 | ]);
127 | };
128 |
129 | if (isIncomingCall) {
130 | answerCall();
131 | } else {
132 | makeCall();
133 | }
134 |
135 | return () => {
136 | call.current.off(Voximplant.CallEvents.Failed);
137 | call.current.off(Voximplant.CallEvents.ProgressToneStart);
138 | call.current.off(Voximplant.CallEvents.Connected);
139 | call.current.off(Voximplant.CallEvents.Disconnected);
140 | };
141 | }, [permissionGranted]);
142 |
143 | const onHangupPress = () => {
144 | call.current.hangup();
145 | };
146 |
147 | return (
148 |
149 |
150 |
151 |
152 |
153 |
157 |
158 |
162 |
163 |
164 | {user?.user_display_name}
165 | {callStatus}
166 |
167 |
168 |
169 |
170 | );
171 | };
172 |
173 | const styles = StyleSheet.create({
174 | page: {
175 | height: '100%',
176 | backgroundColor: '#7b4e80',
177 | },
178 | cameraPreview: {
179 | flex: 1,
180 | alignItems: 'center',
181 | paddingTop: 10,
182 | paddingHorizontal: 10,
183 | },
184 | localVideo: {
185 | width: 100,
186 | height: 150,
187 | backgroundColor: '#ffff6e',
188 |
189 | borderRadius: 10,
190 |
191 | position: 'absolute',
192 | right: 10,
193 | top: 100,
194 | },
195 | remoteVideo: {
196 | backgroundColor: '#7b4e80',
197 | borderRadius: 10,
198 | position: 'absolute',
199 | left: 0,
200 | right: 0,
201 | top: 0,
202 | bottom: 100,
203 | },
204 | name: {
205 | fontSize: 30,
206 | fontWeight: 'bold',
207 | color: 'white',
208 | marginTop: 50,
209 | marginBottom: 15,
210 | },
211 | phoneNumber: {
212 | fontSize: 20,
213 | color: 'white',
214 | },
215 | backButton: {
216 | position: 'absolute',
217 | top: 50,
218 | left: 10,
219 | zIndex: 10,
220 | },
221 | });
222 |
223 | export default CallingScreen;
224 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | project.ext.react = [
81 | enableHermes: false, // clean and rebuild if changing
82 | ]
83 |
84 | apply from: "../../node_modules/react-native/react.gradle"
85 |
86 | /**
87 | * Set this to true to create two separate APKs instead of one:
88 | * - An APK that only works on ARM devices
89 | * - An APK that only works on x86 devices
90 | * The advantage is the size of the APK is reduced by about 4MB.
91 | * Upload all the APKs to the Play Store and people will download
92 | * the correct one based on the CPU architecture of their device.
93 | */
94 | def enableSeparateBuildPerCPUArchitecture = false
95 |
96 | /**
97 | * Run Proguard to shrink the Java bytecode in release builds.
98 | */
99 | def enableProguardInReleaseBuilds = false
100 |
101 | /**
102 | * The preferred build flavor of JavaScriptCore.
103 | *
104 | * For example, to use the international variant, you can use:
105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106 | *
107 | * The international variant includes ICU i18n library and necessary data
108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109 | * give correct results when using with locales other than en-US. Note that
110 | * this variant is about 6MiB larger per architecture than default.
111 | */
112 | def jscFlavor = 'org.webkit:android-jsc:+'
113 |
114 | /**
115 | * Whether to enable the Hermes VM.
116 | *
117 | * This should be set on project.ext.react and mirrored here. If it is not set
118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119 | * and the benefits of using Hermes will therefore be sharply reduced.
120 | */
121 | def enableHermes = project.ext.react.get("enableHermes", false);
122 |
123 | /**
124 | * Architectures to build native code for in debug.
125 | */
126 | def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
127 |
128 | android {
129 | ndkVersion rootProject.ext.ndkVersion
130 |
131 | compileSdkVersion rootProject.ext.compileSdkVersion
132 |
133 | defaultConfig {
134 | applicationId "com.videocall"
135 | minSdkVersion rootProject.ext.minSdkVersion
136 | targetSdkVersion rootProject.ext.targetSdkVersion
137 | versionCode 1
138 | versionName "1.0"
139 | }
140 | splits {
141 | abi {
142 | reset()
143 | enable enableSeparateBuildPerCPUArchitecture
144 | universalApk false // If true, also generate a universal APK
145 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
146 | }
147 | }
148 | signingConfigs {
149 | debug {
150 | storeFile file('debug.keystore')
151 | storePassword 'android'
152 | keyAlias 'androiddebugkey'
153 | keyPassword 'android'
154 | }
155 | }
156 | buildTypes {
157 | debug {
158 | signingConfig signingConfigs.debug
159 | if (nativeArchitectures) {
160 | ndk {
161 | abiFilters nativeArchitectures.split(',')
162 | }
163 | }
164 | }
165 | release {
166 | // Caution! In production, you need to generate your own keystore file.
167 | // see https://reactnative.dev/docs/signed-apk-android.
168 | signingConfig signingConfigs.debug
169 | minifyEnabled enableProguardInReleaseBuilds
170 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
171 | }
172 | }
173 |
174 | // applicationVariants are e.g. debug, release
175 | applicationVariants.all { variant ->
176 | variant.outputs.each { output ->
177 | // For each separate APK per architecture, set a unique version code as described here:
178 | // https://developer.android.com/studio/build/configure-apk-splits.html
179 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
180 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
181 | def abi = output.getFilter(OutputFile.ABI)
182 | if (abi != null) { // null for the universal-debug, universal-release variants
183 | output.versionCodeOverride =
184 | defaultConfig.versionCode * 1000 + versionCodes.get(abi)
185 | }
186 |
187 | }
188 | }
189 | }
190 |
191 | dependencies {
192 | implementation fileTree(dir: "libs", include: ["*.jar"])
193 | //noinspection GradleDynamicVersion
194 | implementation "com.facebook.react:react-native:+" // From node_modules
195 |
196 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
197 |
198 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
199 | exclude group:'com.facebook.fbjni'
200 | }
201 |
202 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
203 | exclude group:'com.facebook.flipper'
204 | exclude group:'com.squareup.okhttp3', module:'okhttp'
205 | }
206 |
207 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
208 | exclude group:'com.facebook.flipper'
209 | }
210 |
211 | if (enableHermes) {
212 | def hermesPath = "../../node_modules/hermes-engine/android/";
213 | debugImplementation files(hermesPath + "hermes-debug.aar")
214 | releaseImplementation files(hermesPath + "hermes-release.aar")
215 | } else {
216 | implementation jscFlavor
217 | }
218 | }
219 |
220 | // Run this once to be able to run the application with BUCK
221 | // puts all compile dependencies into folder libs for BUCK to use
222 | task copyDownloadableDepsToLibs(type: Copy) {
223 | from configurations.implementation
224 | into 'libs'
225 | }
226 |
227 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
228 | apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
229 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost (1.76.0)
3 | - CocoaAsyncSocket (7.6.5)
4 | - DoubleConversion (1.1.6)
5 | - FBLazyVector (0.66.2)
6 | - FBReactNativeSpec (0.66.2):
7 | - RCT-Folly (= 2021.06.28.00-v2)
8 | - RCTRequired (= 0.66.2)
9 | - RCTTypeSafety (= 0.66.2)
10 | - React-Core (= 0.66.2)
11 | - React-jsi (= 0.66.2)
12 | - ReactCommon/turbomodule/core (= 0.66.2)
13 | - Flipper (0.99.0):
14 | - Flipper-Folly (~> 2.6)
15 | - Flipper-RSocket (~> 1.4)
16 | - Flipper-Boost-iOSX (1.76.0.1.11)
17 | - Flipper-DoubleConversion (3.1.7)
18 | - Flipper-Fmt (7.1.7)
19 | - Flipper-Folly (2.6.7):
20 | - Flipper-Boost-iOSX
21 | - Flipper-DoubleConversion
22 | - Flipper-Fmt (= 7.1.7)
23 | - Flipper-Glog
24 | - libevent (~> 2.1.12)
25 | - OpenSSL-Universal (= 1.1.180)
26 | - Flipper-Glog (0.3.6)
27 | - Flipper-PeerTalk (0.0.4)
28 | - Flipper-RSocket (1.4.3):
29 | - Flipper-Folly (~> 2.6)
30 | - FlipperKit (0.99.0):
31 | - FlipperKit/Core (= 0.99.0)
32 | - FlipperKit/Core (0.99.0):
33 | - Flipper (~> 0.99.0)
34 | - FlipperKit/CppBridge
35 | - FlipperKit/FBCxxFollyDynamicConvert
36 | - FlipperKit/FBDefines
37 | - FlipperKit/FKPortForwarding
38 | - FlipperKit/CppBridge (0.99.0):
39 | - Flipper (~> 0.99.0)
40 | - FlipperKit/FBCxxFollyDynamicConvert (0.99.0):
41 | - Flipper-Folly (~> 2.6)
42 | - FlipperKit/FBDefines (0.99.0)
43 | - FlipperKit/FKPortForwarding (0.99.0):
44 | - CocoaAsyncSocket (~> 7.6)
45 | - Flipper-PeerTalk (~> 0.0.4)
46 | - FlipperKit/FlipperKitHighlightOverlay (0.99.0)
47 | - FlipperKit/FlipperKitLayoutHelpers (0.99.0):
48 | - FlipperKit/Core
49 | - FlipperKit/FlipperKitHighlightOverlay
50 | - FlipperKit/FlipperKitLayoutTextSearchable
51 | - FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitHighlightOverlay
54 | - FlipperKit/FlipperKitLayoutHelpers
55 | - YogaKit (~> 1.18)
56 | - FlipperKit/FlipperKitLayoutPlugin (0.99.0):
57 | - FlipperKit/Core
58 | - FlipperKit/FlipperKitHighlightOverlay
59 | - FlipperKit/FlipperKitLayoutHelpers
60 | - FlipperKit/FlipperKitLayoutIOSDescriptors
61 | - FlipperKit/FlipperKitLayoutTextSearchable
62 | - YogaKit (~> 1.18)
63 | - FlipperKit/FlipperKitLayoutTextSearchable (0.99.0)
64 | - FlipperKit/FlipperKitNetworkPlugin (0.99.0):
65 | - FlipperKit/Core
66 | - FlipperKit/FlipperKitReactPlugin (0.99.0):
67 | - FlipperKit/Core
68 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0):
69 | - FlipperKit/Core
70 | - FlipperKit/SKIOSNetworkPlugin (0.99.0):
71 | - FlipperKit/Core
72 | - FlipperKit/FlipperKitNetworkPlugin
73 | - fmt (6.2.1)
74 | - glog (0.3.5)
75 | - libevent (2.1.12)
76 | - OpenSSL-Universal (1.1.180)
77 | - RCT-Folly (2021.06.28.00-v2):
78 | - boost
79 | - DoubleConversion
80 | - fmt (~> 6.2.1)
81 | - glog
82 | - RCT-Folly/Default (= 2021.06.28.00-v2)
83 | - RCT-Folly/Default (2021.06.28.00-v2):
84 | - boost
85 | - DoubleConversion
86 | - fmt (~> 6.2.1)
87 | - glog
88 | - RCTRequired (0.66.2)
89 | - RCTTypeSafety (0.66.2):
90 | - FBLazyVector (= 0.66.2)
91 | - RCT-Folly (= 2021.06.28.00-v2)
92 | - RCTRequired (= 0.66.2)
93 | - React-Core (= 0.66.2)
94 | - React (0.66.2):
95 | - React-Core (= 0.66.2)
96 | - React-Core/DevSupport (= 0.66.2)
97 | - React-Core/RCTWebSocket (= 0.66.2)
98 | - React-RCTActionSheet (= 0.66.2)
99 | - React-RCTAnimation (= 0.66.2)
100 | - React-RCTBlob (= 0.66.2)
101 | - React-RCTImage (= 0.66.2)
102 | - React-RCTLinking (= 0.66.2)
103 | - React-RCTNetwork (= 0.66.2)
104 | - React-RCTSettings (= 0.66.2)
105 | - React-RCTText (= 0.66.2)
106 | - React-RCTVibration (= 0.66.2)
107 | - React-callinvoker (0.66.2)
108 | - React-Core (0.66.2):
109 | - glog
110 | - RCT-Folly (= 2021.06.28.00-v2)
111 | - React-Core/Default (= 0.66.2)
112 | - React-cxxreact (= 0.66.2)
113 | - React-jsi (= 0.66.2)
114 | - React-jsiexecutor (= 0.66.2)
115 | - React-perflogger (= 0.66.2)
116 | - Yoga
117 | - React-Core/CoreModulesHeaders (0.66.2):
118 | - glog
119 | - RCT-Folly (= 2021.06.28.00-v2)
120 | - React-Core/Default
121 | - React-cxxreact (= 0.66.2)
122 | - React-jsi (= 0.66.2)
123 | - React-jsiexecutor (= 0.66.2)
124 | - React-perflogger (= 0.66.2)
125 | - Yoga
126 | - React-Core/Default (0.66.2):
127 | - glog
128 | - RCT-Folly (= 2021.06.28.00-v2)
129 | - React-cxxreact (= 0.66.2)
130 | - React-jsi (= 0.66.2)
131 | - React-jsiexecutor (= 0.66.2)
132 | - React-perflogger (= 0.66.2)
133 | - Yoga
134 | - React-Core/DevSupport (0.66.2):
135 | - glog
136 | - RCT-Folly (= 2021.06.28.00-v2)
137 | - React-Core/Default (= 0.66.2)
138 | - React-Core/RCTWebSocket (= 0.66.2)
139 | - React-cxxreact (= 0.66.2)
140 | - React-jsi (= 0.66.2)
141 | - React-jsiexecutor (= 0.66.2)
142 | - React-jsinspector (= 0.66.2)
143 | - React-perflogger (= 0.66.2)
144 | - Yoga
145 | - React-Core/RCTActionSheetHeaders (0.66.2):
146 | - glog
147 | - RCT-Folly (= 2021.06.28.00-v2)
148 | - React-Core/Default
149 | - React-cxxreact (= 0.66.2)
150 | - React-jsi (= 0.66.2)
151 | - React-jsiexecutor (= 0.66.2)
152 | - React-perflogger (= 0.66.2)
153 | - Yoga
154 | - React-Core/RCTAnimationHeaders (0.66.2):
155 | - glog
156 | - RCT-Folly (= 2021.06.28.00-v2)
157 | - React-Core/Default
158 | - React-cxxreact (= 0.66.2)
159 | - React-jsi (= 0.66.2)
160 | - React-jsiexecutor (= 0.66.2)
161 | - React-perflogger (= 0.66.2)
162 | - Yoga
163 | - React-Core/RCTBlobHeaders (0.66.2):
164 | - glog
165 | - RCT-Folly (= 2021.06.28.00-v2)
166 | - React-Core/Default
167 | - React-cxxreact (= 0.66.2)
168 | - React-jsi (= 0.66.2)
169 | - React-jsiexecutor (= 0.66.2)
170 | - React-perflogger (= 0.66.2)
171 | - Yoga
172 | - React-Core/RCTImageHeaders (0.66.2):
173 | - glog
174 | - RCT-Folly (= 2021.06.28.00-v2)
175 | - React-Core/Default
176 | - React-cxxreact (= 0.66.2)
177 | - React-jsi (= 0.66.2)
178 | - React-jsiexecutor (= 0.66.2)
179 | - React-perflogger (= 0.66.2)
180 | - Yoga
181 | - React-Core/RCTLinkingHeaders (0.66.2):
182 | - glog
183 | - RCT-Folly (= 2021.06.28.00-v2)
184 | - React-Core/Default
185 | - React-cxxreact (= 0.66.2)
186 | - React-jsi (= 0.66.2)
187 | - React-jsiexecutor (= 0.66.2)
188 | - React-perflogger (= 0.66.2)
189 | - Yoga
190 | - React-Core/RCTNetworkHeaders (0.66.2):
191 | - glog
192 | - RCT-Folly (= 2021.06.28.00-v2)
193 | - React-Core/Default
194 | - React-cxxreact (= 0.66.2)
195 | - React-jsi (= 0.66.2)
196 | - React-jsiexecutor (= 0.66.2)
197 | - React-perflogger (= 0.66.2)
198 | - Yoga
199 | - React-Core/RCTSettingsHeaders (0.66.2):
200 | - glog
201 | - RCT-Folly (= 2021.06.28.00-v2)
202 | - React-Core/Default
203 | - React-cxxreact (= 0.66.2)
204 | - React-jsi (= 0.66.2)
205 | - React-jsiexecutor (= 0.66.2)
206 | - React-perflogger (= 0.66.2)
207 | - Yoga
208 | - React-Core/RCTTextHeaders (0.66.2):
209 | - glog
210 | - RCT-Folly (= 2021.06.28.00-v2)
211 | - React-Core/Default
212 | - React-cxxreact (= 0.66.2)
213 | - React-jsi (= 0.66.2)
214 | - React-jsiexecutor (= 0.66.2)
215 | - React-perflogger (= 0.66.2)
216 | - Yoga
217 | - React-Core/RCTVibrationHeaders (0.66.2):
218 | - glog
219 | - RCT-Folly (= 2021.06.28.00-v2)
220 | - React-Core/Default
221 | - React-cxxreact (= 0.66.2)
222 | - React-jsi (= 0.66.2)
223 | - React-jsiexecutor (= 0.66.2)
224 | - React-perflogger (= 0.66.2)
225 | - Yoga
226 | - React-Core/RCTWebSocket (0.66.2):
227 | - glog
228 | - RCT-Folly (= 2021.06.28.00-v2)
229 | - React-Core/Default (= 0.66.2)
230 | - React-cxxreact (= 0.66.2)
231 | - React-jsi (= 0.66.2)
232 | - React-jsiexecutor (= 0.66.2)
233 | - React-perflogger (= 0.66.2)
234 | - Yoga
235 | - React-CoreModules (0.66.2):
236 | - FBReactNativeSpec (= 0.66.2)
237 | - RCT-Folly (= 2021.06.28.00-v2)
238 | - RCTTypeSafety (= 0.66.2)
239 | - React-Core/CoreModulesHeaders (= 0.66.2)
240 | - React-jsi (= 0.66.2)
241 | - React-RCTImage (= 0.66.2)
242 | - ReactCommon/turbomodule/core (= 0.66.2)
243 | - React-cxxreact (0.66.2):
244 | - boost (= 1.76.0)
245 | - DoubleConversion
246 | - glog
247 | - RCT-Folly (= 2021.06.28.00-v2)
248 | - React-callinvoker (= 0.66.2)
249 | - React-jsi (= 0.66.2)
250 | - React-jsinspector (= 0.66.2)
251 | - React-logger (= 0.66.2)
252 | - React-perflogger (= 0.66.2)
253 | - React-runtimeexecutor (= 0.66.2)
254 | - React-jsi (0.66.2):
255 | - boost (= 1.76.0)
256 | - DoubleConversion
257 | - glog
258 | - RCT-Folly (= 2021.06.28.00-v2)
259 | - React-jsi/Default (= 0.66.2)
260 | - React-jsi/Default (0.66.2):
261 | - boost (= 1.76.0)
262 | - DoubleConversion
263 | - glog
264 | - RCT-Folly (= 2021.06.28.00-v2)
265 | - React-jsiexecutor (0.66.2):
266 | - DoubleConversion
267 | - glog
268 | - RCT-Folly (= 2021.06.28.00-v2)
269 | - React-cxxreact (= 0.66.2)
270 | - React-jsi (= 0.66.2)
271 | - React-perflogger (= 0.66.2)
272 | - React-jsinspector (0.66.2)
273 | - React-logger (0.66.2):
274 | - glog
275 | - react-native-safe-area-context (3.3.2):
276 | - React-Core
277 | - react-native-voximplant (1.26.0):
278 | - React
279 | - VoxImplantSDK (= 2.44.0)
280 | - React-perflogger (0.66.2)
281 | - React-RCTActionSheet (0.66.2):
282 | - React-Core/RCTActionSheetHeaders (= 0.66.2)
283 | - React-RCTAnimation (0.66.2):
284 | - FBReactNativeSpec (= 0.66.2)
285 | - RCT-Folly (= 2021.06.28.00-v2)
286 | - RCTTypeSafety (= 0.66.2)
287 | - React-Core/RCTAnimationHeaders (= 0.66.2)
288 | - React-jsi (= 0.66.2)
289 | - ReactCommon/turbomodule/core (= 0.66.2)
290 | - React-RCTBlob (0.66.2):
291 | - FBReactNativeSpec (= 0.66.2)
292 | - RCT-Folly (= 2021.06.28.00-v2)
293 | - React-Core/RCTBlobHeaders (= 0.66.2)
294 | - React-Core/RCTWebSocket (= 0.66.2)
295 | - React-jsi (= 0.66.2)
296 | - React-RCTNetwork (= 0.66.2)
297 | - ReactCommon/turbomodule/core (= 0.66.2)
298 | - React-RCTImage (0.66.2):
299 | - FBReactNativeSpec (= 0.66.2)
300 | - RCT-Folly (= 2021.06.28.00-v2)
301 | - RCTTypeSafety (= 0.66.2)
302 | - React-Core/RCTImageHeaders (= 0.66.2)
303 | - React-jsi (= 0.66.2)
304 | - React-RCTNetwork (= 0.66.2)
305 | - ReactCommon/turbomodule/core (= 0.66.2)
306 | - React-RCTLinking (0.66.2):
307 | - FBReactNativeSpec (= 0.66.2)
308 | - React-Core/RCTLinkingHeaders (= 0.66.2)
309 | - React-jsi (= 0.66.2)
310 | - ReactCommon/turbomodule/core (= 0.66.2)
311 | - React-RCTNetwork (0.66.2):
312 | - FBReactNativeSpec (= 0.66.2)
313 | - RCT-Folly (= 2021.06.28.00-v2)
314 | - RCTTypeSafety (= 0.66.2)
315 | - React-Core/RCTNetworkHeaders (= 0.66.2)
316 | - React-jsi (= 0.66.2)
317 | - ReactCommon/turbomodule/core (= 0.66.2)
318 | - React-RCTSettings (0.66.2):
319 | - FBReactNativeSpec (= 0.66.2)
320 | - RCT-Folly (= 2021.06.28.00-v2)
321 | - RCTTypeSafety (= 0.66.2)
322 | - React-Core/RCTSettingsHeaders (= 0.66.2)
323 | - React-jsi (= 0.66.2)
324 | - ReactCommon/turbomodule/core (= 0.66.2)
325 | - React-RCTText (0.66.2):
326 | - React-Core/RCTTextHeaders (= 0.66.2)
327 | - React-RCTVibration (0.66.2):
328 | - FBReactNativeSpec (= 0.66.2)
329 | - RCT-Folly (= 2021.06.28.00-v2)
330 | - React-Core/RCTVibrationHeaders (= 0.66.2)
331 | - React-jsi (= 0.66.2)
332 | - ReactCommon/turbomodule/core (= 0.66.2)
333 | - React-runtimeexecutor (0.66.2):
334 | - React-jsi (= 0.66.2)
335 | - ReactCommon/turbomodule/core (0.66.2):
336 | - DoubleConversion
337 | - glog
338 | - RCT-Folly (= 2021.06.28.00-v2)
339 | - React-callinvoker (= 0.66.2)
340 | - React-Core (= 0.66.2)
341 | - React-cxxreact (= 0.66.2)
342 | - React-jsi (= 0.66.2)
343 | - React-logger (= 0.66.2)
344 | - React-perflogger (= 0.66.2)
345 | - RNScreens (3.9.0):
346 | - React-Core
347 | - React-RCTImage
348 | - RNVectorIcons (9.0.0):
349 | - React-Core
350 | - VoxImplantSDK (2.44.0):
351 | - VoxImplantSDK/Core (= 2.44.0)
352 | - VoxImplantSDK/Core (2.44.0):
353 | - VoxImplantWebRTC (= 93.0.0)
354 | - VoxImplantWebRTC (93.0.0)
355 | - Yoga (1.14.0)
356 | - YogaKit (1.18.1):
357 | - Yoga (~> 1.14)
358 |
359 | DEPENDENCIES:
360 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
361 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
362 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
363 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
364 | - Flipper (= 0.99.0)
365 | - Flipper-Boost-iOSX (= 1.76.0.1.11)
366 | - Flipper-DoubleConversion (= 3.1.7)
367 | - Flipper-Fmt (= 7.1.7)
368 | - Flipper-Folly (= 2.6.7)
369 | - Flipper-Glog (= 0.3.6)
370 | - Flipper-PeerTalk (= 0.0.4)
371 | - Flipper-RSocket (= 1.4.3)
372 | - FlipperKit (= 0.99.0)
373 | - FlipperKit/Core (= 0.99.0)
374 | - FlipperKit/CppBridge (= 0.99.0)
375 | - FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0)
376 | - FlipperKit/FBDefines (= 0.99.0)
377 | - FlipperKit/FKPortForwarding (= 0.99.0)
378 | - FlipperKit/FlipperKitHighlightOverlay (= 0.99.0)
379 | - FlipperKit/FlipperKitLayoutPlugin (= 0.99.0)
380 | - FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0)
381 | - FlipperKit/FlipperKitNetworkPlugin (= 0.99.0)
382 | - FlipperKit/FlipperKitReactPlugin (= 0.99.0)
383 | - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0)
384 | - FlipperKit/SKIOSNetworkPlugin (= 0.99.0)
385 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
386 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
387 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
388 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
389 | - React (from `../node_modules/react-native/`)
390 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
391 | - React-Core (from `../node_modules/react-native/`)
392 | - React-Core/DevSupport (from `../node_modules/react-native/`)
393 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
394 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
395 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
396 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
397 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
398 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
399 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
400 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
401 | - react-native-voximplant (from `../node_modules/react-native-voximplant`)
402 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
403 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
404 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
405 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
406 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
407 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
408 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
409 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
410 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
411 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
412 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
413 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
414 | - RNScreens (from `../node_modules/react-native-screens`)
415 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
416 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
417 |
418 | SPEC REPOS:
419 | trunk:
420 | - CocoaAsyncSocket
421 | - Flipper
422 | - Flipper-Boost-iOSX
423 | - Flipper-DoubleConversion
424 | - Flipper-Fmt
425 | - Flipper-Folly
426 | - Flipper-Glog
427 | - Flipper-PeerTalk
428 | - Flipper-RSocket
429 | - FlipperKit
430 | - fmt
431 | - libevent
432 | - OpenSSL-Universal
433 | - VoxImplantSDK
434 | - VoxImplantWebRTC
435 | - YogaKit
436 |
437 | EXTERNAL SOURCES:
438 | boost:
439 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
440 | DoubleConversion:
441 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
442 | FBLazyVector:
443 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
444 | FBReactNativeSpec:
445 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
446 | glog:
447 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
448 | RCT-Folly:
449 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
450 | RCTRequired:
451 | :path: "../node_modules/react-native/Libraries/RCTRequired"
452 | RCTTypeSafety:
453 | :path: "../node_modules/react-native/Libraries/TypeSafety"
454 | React:
455 | :path: "../node_modules/react-native/"
456 | React-callinvoker:
457 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
458 | React-Core:
459 | :path: "../node_modules/react-native/"
460 | React-CoreModules:
461 | :path: "../node_modules/react-native/React/CoreModules"
462 | React-cxxreact:
463 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
464 | React-jsi:
465 | :path: "../node_modules/react-native/ReactCommon/jsi"
466 | React-jsiexecutor:
467 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
468 | React-jsinspector:
469 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
470 | React-logger:
471 | :path: "../node_modules/react-native/ReactCommon/logger"
472 | react-native-safe-area-context:
473 | :path: "../node_modules/react-native-safe-area-context"
474 | react-native-voximplant:
475 | :path: "../node_modules/react-native-voximplant"
476 | React-perflogger:
477 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
478 | React-RCTActionSheet:
479 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
480 | React-RCTAnimation:
481 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
482 | React-RCTBlob:
483 | :path: "../node_modules/react-native/Libraries/Blob"
484 | React-RCTImage:
485 | :path: "../node_modules/react-native/Libraries/Image"
486 | React-RCTLinking:
487 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
488 | React-RCTNetwork:
489 | :path: "../node_modules/react-native/Libraries/Network"
490 | React-RCTSettings:
491 | :path: "../node_modules/react-native/Libraries/Settings"
492 | React-RCTText:
493 | :path: "../node_modules/react-native/Libraries/Text"
494 | React-RCTVibration:
495 | :path: "../node_modules/react-native/Libraries/Vibration"
496 | React-runtimeexecutor:
497 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
498 | ReactCommon:
499 | :path: "../node_modules/react-native/ReactCommon"
500 | RNScreens:
501 | :path: "../node_modules/react-native-screens"
502 | RNVectorIcons:
503 | :path: "../node_modules/react-native-vector-icons"
504 | Yoga:
505 | :path: "../node_modules/react-native/ReactCommon/yoga"
506 |
507 | SPEC CHECKSUMS:
508 | boost: a7c83b31436843459a1961bfd74b96033dc77234
509 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
510 | DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
511 | FBLazyVector: 57a8b34460679fb69e1ce7d625b04dbd1596b1f1
512 | FBReactNativeSpec: 18438b1c04ce502ed681cd19db3f4508964c082a
513 | Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733
514 | Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
515 | Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c
516 | Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
517 | Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a
518 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
519 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
520 | Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
521 | FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9
522 | fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
523 | glog: 5337263514dd6f09803962437687240c5dc39aa4
524 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
525 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
526 | RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
527 | RCTRequired: 5e9e85f48da8dd447f5834ce14c6799ea8c7f41a
528 | RCTTypeSafety: aba333d04d88d1f954e93666a08d7ae57a87ab30
529 | React: a8f119296b97812f73af5ae0eb1f26cf262ae4b4
530 | React-callinvoker: ce22372414af68085a32174d5dfbd41ea03799e6
531 | React-Core: 9fb6365464ecc235d7023ee7f868dc643ca20f41
532 | React-CoreModules: 9874a32779eadf7492fb85e71fbc5eeab733df32
533 | React-cxxreact: e562a15aba33752febb3125bad4e329e8d024252
534 | React-jsi: 78f1c0eb3f9054d15745e89e06f9dc17de4d07da
535 | React-jsiexecutor: 573adf0d6ce5e05c55872dfde5b1589acb88a96f
536 | React-jsinspector: b08b2d5e86cef9dc4bb69f0aa0bbe6d210fb7da5
537 | React-logger: faee236598b0f7e1a5e3b68577016ac451f1f993
538 | react-native-safe-area-context: 584dc04881deb49474363f3be89e4ca0e854c057
539 | react-native-voximplant: 530e15884ebf58b7d88a76954caafbdfba0e1a13
540 | React-perflogger: 5ab487cacfe6ec19bfe3d3f8072bf71eb07d63da
541 | React-RCTActionSheet: 03f25695e095fb5aa003828620943c74cc281fec
542 | React-RCTAnimation: eaf82da39f0c36fb0ef2a28df797c5f73a2a98ea
543 | React-RCTBlob: c8b58e70faa2ff482a8eb99491c8b12c4477bc74
544 | React-RCTImage: 92a0471a03c55d445ede02516176d852120280bf
545 | React-RCTLinking: 9a4482710586877671e19f0a564c2a745153f26f
546 | React-RCTNetwork: 3801dd1ce7873db828a2d824ee2d4f25a0abf7d0
547 | React-RCTSettings: a5d35733c27853177935185b76a3a0f7aa594dc9
548 | React-RCTText: 6d8d3bc93c4595caf1f681198271cd4630759a74
549 | React-RCTVibration: 3e815c3d2dd2e0e931b68595b5b92d23ba38b3fb
550 | React-runtimeexecutor: 393e26602c1b248683372051e34db63e359e3b01
551 | ReactCommon: c0263c1a41509aeb94be3214fa7bc3b71eae5ef6
552 | RNScreens: 4d79118be80f79fa1f4aa131909a1d6e86280af3
553 | RNVectorIcons: 4143ba35feebab8fdbe6bc43d1e776b393d47ac8
554 | VoxImplantSDK: fb162b8e8e7c6f9cede7012d552bc448228f4799
555 | VoxImplantWebRTC: 8ddd8a63d0c20afa604fec22a2552c32b0371974
556 | Yoga: 9a08effa851c1d8cc1647691895540bc168ea65f
557 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
558 |
559 | PODFILE CHECKSUM: 918791db90f4577cefa729d0f2b3a9849845ec47
560 |
561 | COCOAPODS: 1.11.2
562 |
--------------------------------------------------------------------------------
/ios/VideoCall.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* VideoCallTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* VideoCallTests.m */; };
11 | 0783CBBCB9FF7B7F73FFE477 /* libPods-VideoCall-VideoCallTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 71812BFE37F236273070A0DC /* libPods-VideoCall-VideoCallTests.a */; };
12 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15 | 7969975E0E9C5D339F42822B /* libPods-VideoCall.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F1DEC618E3CB1E31FD28A490 /* libPods-VideoCall.a */; };
16 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
17 | /* End PBXBuildFile section */
18 |
19 | /* Begin PBXContainerItemProxy section */
20 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21 | isa = PBXContainerItemProxy;
22 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23 | proxyType = 1;
24 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25 | remoteInfo = VideoCall;
26 | };
27 | /* End PBXContainerItemProxy section */
28 |
29 | /* Begin PBXFileReference section */
30 | 00E356EE1AD99517003FC87E /* VideoCallTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VideoCallTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
32 | 00E356F21AD99517003FC87E /* VideoCallTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VideoCallTests.m; sourceTree = ""; };
33 | 13B07F961A680F5B00A75B9A /* VideoCall.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VideoCall.app; sourceTree = BUILT_PRODUCTS_DIR; };
34 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = VideoCall/AppDelegate.h; sourceTree = ""; };
35 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = VideoCall/AppDelegate.m; sourceTree = ""; };
36 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = VideoCall/Images.xcassets; sourceTree = ""; };
37 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = VideoCall/Info.plist; sourceTree = ""; };
38 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = VideoCall/main.m; sourceTree = ""; };
39 | 2A0DAC9149E78C4B668610BE /* Pods-VideoCall-VideoCallTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoCall-VideoCallTests.release.xcconfig"; path = "Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests.release.xcconfig"; sourceTree = ""; };
40 | 70A7D91CF069D73153286CD7 /* Pods-VideoCall.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoCall.release.xcconfig"; path = "Target Support Files/Pods-VideoCall/Pods-VideoCall.release.xcconfig"; sourceTree = ""; };
41 | 71812BFE37F236273070A0DC /* libPods-VideoCall-VideoCallTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-VideoCall-VideoCallTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
42 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = VideoCall/LaunchScreen.storyboard; sourceTree = ""; };
43 | 87E52E3A0BBBF66429F482BF /* Pods-VideoCall.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoCall.debug.xcconfig"; path = "Target Support Files/Pods-VideoCall/Pods-VideoCall.debug.xcconfig"; sourceTree = ""; };
44 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
45 | F1DEC618E3CB1E31FD28A490 /* libPods-VideoCall.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-VideoCall.a"; sourceTree = BUILT_PRODUCTS_DIR; };
46 | F7F1F6FF47184640C1705C45 /* Pods-VideoCall-VideoCallTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoCall-VideoCallTests.debug.xcconfig"; path = "Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests.debug.xcconfig"; sourceTree = ""; };
47 | /* End PBXFileReference section */
48 |
49 | /* Begin PBXFrameworksBuildPhase section */
50 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
51 | isa = PBXFrameworksBuildPhase;
52 | buildActionMask = 2147483647;
53 | files = (
54 | 0783CBBCB9FF7B7F73FFE477 /* libPods-VideoCall-VideoCallTests.a in Frameworks */,
55 | );
56 | runOnlyForDeploymentPostprocessing = 0;
57 | };
58 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
59 | isa = PBXFrameworksBuildPhase;
60 | buildActionMask = 2147483647;
61 | files = (
62 | 7969975E0E9C5D339F42822B /* libPods-VideoCall.a in Frameworks */,
63 | );
64 | runOnlyForDeploymentPostprocessing = 0;
65 | };
66 | /* End PBXFrameworksBuildPhase section */
67 |
68 | /* Begin PBXGroup section */
69 | 00E356EF1AD99517003FC87E /* VideoCallTests */ = {
70 | isa = PBXGroup;
71 | children = (
72 | 00E356F21AD99517003FC87E /* VideoCallTests.m */,
73 | 00E356F01AD99517003FC87E /* Supporting Files */,
74 | );
75 | path = VideoCallTests;
76 | sourceTree = "";
77 | };
78 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
79 | isa = PBXGroup;
80 | children = (
81 | 00E356F11AD99517003FC87E /* Info.plist */,
82 | );
83 | name = "Supporting Files";
84 | sourceTree = "";
85 | };
86 | 040C8BB7EE649DAE2DB04F91 /* Pods */ = {
87 | isa = PBXGroup;
88 | children = (
89 | 87E52E3A0BBBF66429F482BF /* Pods-VideoCall.debug.xcconfig */,
90 | 70A7D91CF069D73153286CD7 /* Pods-VideoCall.release.xcconfig */,
91 | F7F1F6FF47184640C1705C45 /* Pods-VideoCall-VideoCallTests.debug.xcconfig */,
92 | 2A0DAC9149E78C4B668610BE /* Pods-VideoCall-VideoCallTests.release.xcconfig */,
93 | );
94 | name = Pods;
95 | path = Pods;
96 | sourceTree = "";
97 | };
98 | 13B07FAE1A68108700A75B9A /* VideoCall */ = {
99 | isa = PBXGroup;
100 | children = (
101 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
102 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
103 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
104 | 13B07FB61A68108700A75B9A /* Info.plist */,
105 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
106 | 13B07FB71A68108700A75B9A /* main.m */,
107 | );
108 | name = VideoCall;
109 | sourceTree = "";
110 | };
111 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
112 | isa = PBXGroup;
113 | children = (
114 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
115 | F1DEC618E3CB1E31FD28A490 /* libPods-VideoCall.a */,
116 | 71812BFE37F236273070A0DC /* libPods-VideoCall-VideoCallTests.a */,
117 | );
118 | name = Frameworks;
119 | sourceTree = "";
120 | };
121 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
122 | isa = PBXGroup;
123 | children = (
124 | );
125 | name = Libraries;
126 | sourceTree = "";
127 | };
128 | 83CBB9F61A601CBA00E9B192 = {
129 | isa = PBXGroup;
130 | children = (
131 | 13B07FAE1A68108700A75B9A /* VideoCall */,
132 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
133 | 00E356EF1AD99517003FC87E /* VideoCallTests */,
134 | 83CBBA001A601CBA00E9B192 /* Products */,
135 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
136 | 040C8BB7EE649DAE2DB04F91 /* Pods */,
137 | );
138 | indentWidth = 2;
139 | sourceTree = "";
140 | tabWidth = 2;
141 | usesTabs = 0;
142 | };
143 | 83CBBA001A601CBA00E9B192 /* Products */ = {
144 | isa = PBXGroup;
145 | children = (
146 | 13B07F961A680F5B00A75B9A /* VideoCall.app */,
147 | 00E356EE1AD99517003FC87E /* VideoCallTests.xctest */,
148 | );
149 | name = Products;
150 | sourceTree = "";
151 | };
152 | /* End PBXGroup section */
153 |
154 | /* Begin PBXNativeTarget section */
155 | 00E356ED1AD99517003FC87E /* VideoCallTests */ = {
156 | isa = PBXNativeTarget;
157 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VideoCallTests" */;
158 | buildPhases = (
159 | 173729EA034B51D79DCF9677 /* [CP] Check Pods Manifest.lock */,
160 | 00E356EA1AD99517003FC87E /* Sources */,
161 | 00E356EB1AD99517003FC87E /* Frameworks */,
162 | 00E356EC1AD99517003FC87E /* Resources */,
163 | 000976E3A085E7A6C65A521C /* [CP] Embed Pods Frameworks */,
164 | 929314D05AB1F4A47230EBE5 /* [CP] Copy Pods Resources */,
165 | );
166 | buildRules = (
167 | );
168 | dependencies = (
169 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
170 | );
171 | name = VideoCallTests;
172 | productName = VideoCallTests;
173 | productReference = 00E356EE1AD99517003FC87E /* VideoCallTests.xctest */;
174 | productType = "com.apple.product-type.bundle.unit-test";
175 | };
176 | 13B07F861A680F5B00A75B9A /* VideoCall */ = {
177 | isa = PBXNativeTarget;
178 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "VideoCall" */;
179 | buildPhases = (
180 | 30E3FFE9CEE167B70A3B6E90 /* [CP] Check Pods Manifest.lock */,
181 | FD10A7F022414F080027D42C /* Start Packager */,
182 | 13B07F871A680F5B00A75B9A /* Sources */,
183 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
184 | 13B07F8E1A680F5B00A75B9A /* Resources */,
185 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
186 | FA729670F06220BA15F56F96 /* [CP] Embed Pods Frameworks */,
187 | 2C1CF278E5053988C0F116E0 /* [CP] Copy Pods Resources */,
188 | );
189 | buildRules = (
190 | );
191 | dependencies = (
192 | );
193 | name = VideoCall;
194 | productName = VideoCall;
195 | productReference = 13B07F961A680F5B00A75B9A /* VideoCall.app */;
196 | productType = "com.apple.product-type.application";
197 | };
198 | /* End PBXNativeTarget section */
199 |
200 | /* Begin PBXProject section */
201 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
202 | isa = PBXProject;
203 | attributes = {
204 | LastUpgradeCheck = 1210;
205 | TargetAttributes = {
206 | 00E356ED1AD99517003FC87E = {
207 | CreatedOnToolsVersion = 6.2;
208 | TestTargetID = 13B07F861A680F5B00A75B9A;
209 | };
210 | 13B07F861A680F5B00A75B9A = {
211 | LastSwiftMigration = 1120;
212 | };
213 | };
214 | };
215 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "VideoCall" */;
216 | compatibilityVersion = "Xcode 12.0";
217 | developmentRegion = en;
218 | hasScannedForEncodings = 0;
219 | knownRegions = (
220 | en,
221 | Base,
222 | );
223 | mainGroup = 83CBB9F61A601CBA00E9B192;
224 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
225 | projectDirPath = "";
226 | projectRoot = "";
227 | targets = (
228 | 13B07F861A680F5B00A75B9A /* VideoCall */,
229 | 00E356ED1AD99517003FC87E /* VideoCallTests */,
230 | );
231 | };
232 | /* End PBXProject section */
233 |
234 | /* Begin PBXResourcesBuildPhase section */
235 | 00E356EC1AD99517003FC87E /* Resources */ = {
236 | isa = PBXResourcesBuildPhase;
237 | buildActionMask = 2147483647;
238 | files = (
239 | );
240 | runOnlyForDeploymentPostprocessing = 0;
241 | };
242 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
243 | isa = PBXResourcesBuildPhase;
244 | buildActionMask = 2147483647;
245 | files = (
246 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
247 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
248 | );
249 | runOnlyForDeploymentPostprocessing = 0;
250 | };
251 | /* End PBXResourcesBuildPhase section */
252 |
253 | /* Begin PBXShellScriptBuildPhase section */
254 | 000976E3A085E7A6C65A521C /* [CP] Embed Pods Frameworks */ = {
255 | isa = PBXShellScriptBuildPhase;
256 | buildActionMask = 2147483647;
257 | files = (
258 | );
259 | inputFileListPaths = (
260 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
261 | );
262 | name = "[CP] Embed Pods Frameworks";
263 | outputFileListPaths = (
264 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
265 | );
266 | runOnlyForDeploymentPostprocessing = 0;
267 | shellPath = /bin/sh;
268 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-frameworks.sh\"\n";
269 | showEnvVarsInLog = 0;
270 | };
271 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
272 | isa = PBXShellScriptBuildPhase;
273 | buildActionMask = 2147483647;
274 | files = (
275 | );
276 | inputPaths = (
277 | );
278 | name = "Bundle React Native code and images";
279 | outputPaths = (
280 | );
281 | runOnlyForDeploymentPostprocessing = 0;
282 | shellPath = /bin/sh;
283 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
284 | };
285 | 173729EA034B51D79DCF9677 /* [CP] Check Pods Manifest.lock */ = {
286 | isa = PBXShellScriptBuildPhase;
287 | buildActionMask = 2147483647;
288 | files = (
289 | );
290 | inputFileListPaths = (
291 | );
292 | inputPaths = (
293 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
294 | "${PODS_ROOT}/Manifest.lock",
295 | );
296 | name = "[CP] Check Pods Manifest.lock";
297 | outputFileListPaths = (
298 | );
299 | outputPaths = (
300 | "$(DERIVED_FILE_DIR)/Pods-VideoCall-VideoCallTests-checkManifestLockResult.txt",
301 | );
302 | runOnlyForDeploymentPostprocessing = 0;
303 | shellPath = /bin/sh;
304 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
305 | showEnvVarsInLog = 0;
306 | };
307 | 2C1CF278E5053988C0F116E0 /* [CP] Copy Pods Resources */ = {
308 | isa = PBXShellScriptBuildPhase;
309 | buildActionMask = 2147483647;
310 | files = (
311 | );
312 | inputFileListPaths = (
313 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-resources-${CONFIGURATION}-input-files.xcfilelist",
314 | );
315 | name = "[CP] Copy Pods Resources";
316 | outputFileListPaths = (
317 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-resources-${CONFIGURATION}-output-files.xcfilelist",
318 | );
319 | runOnlyForDeploymentPostprocessing = 0;
320 | shellPath = /bin/sh;
321 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-resources.sh\"\n";
322 | showEnvVarsInLog = 0;
323 | };
324 | 30E3FFE9CEE167B70A3B6E90 /* [CP] Check Pods Manifest.lock */ = {
325 | isa = PBXShellScriptBuildPhase;
326 | buildActionMask = 2147483647;
327 | files = (
328 | );
329 | inputFileListPaths = (
330 | );
331 | inputPaths = (
332 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
333 | "${PODS_ROOT}/Manifest.lock",
334 | );
335 | name = "[CP] Check Pods Manifest.lock";
336 | outputFileListPaths = (
337 | );
338 | outputPaths = (
339 | "$(DERIVED_FILE_DIR)/Pods-VideoCall-checkManifestLockResult.txt",
340 | );
341 | runOnlyForDeploymentPostprocessing = 0;
342 | shellPath = /bin/sh;
343 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
344 | showEnvVarsInLog = 0;
345 | };
346 | 929314D05AB1F4A47230EBE5 /* [CP] Copy Pods Resources */ = {
347 | isa = PBXShellScriptBuildPhase;
348 | buildActionMask = 2147483647;
349 | files = (
350 | );
351 | inputFileListPaths = (
352 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-resources-${CONFIGURATION}-input-files.xcfilelist",
353 | );
354 | name = "[CP] Copy Pods Resources";
355 | outputFileListPaths = (
356 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-resources-${CONFIGURATION}-output-files.xcfilelist",
357 | );
358 | runOnlyForDeploymentPostprocessing = 0;
359 | shellPath = /bin/sh;
360 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-VideoCall-VideoCallTests/Pods-VideoCall-VideoCallTests-resources.sh\"\n";
361 | showEnvVarsInLog = 0;
362 | };
363 | FA729670F06220BA15F56F96 /* [CP] Embed Pods Frameworks */ = {
364 | isa = PBXShellScriptBuildPhase;
365 | buildActionMask = 2147483647;
366 | files = (
367 | );
368 | inputFileListPaths = (
369 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-frameworks-${CONFIGURATION}-input-files.xcfilelist",
370 | );
371 | name = "[CP] Embed Pods Frameworks";
372 | outputFileListPaths = (
373 | "${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-frameworks-${CONFIGURATION}-output-files.xcfilelist",
374 | );
375 | runOnlyForDeploymentPostprocessing = 0;
376 | shellPath = /bin/sh;
377 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-VideoCall/Pods-VideoCall-frameworks.sh\"\n";
378 | showEnvVarsInLog = 0;
379 | };
380 | FD10A7F022414F080027D42C /* Start Packager */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputFileListPaths = (
386 | );
387 | inputPaths = (
388 | );
389 | name = "Start Packager";
390 | outputFileListPaths = (
391 | );
392 | outputPaths = (
393 | );
394 | runOnlyForDeploymentPostprocessing = 0;
395 | shellPath = /bin/sh;
396 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
397 | showEnvVarsInLog = 0;
398 | };
399 | /* End PBXShellScriptBuildPhase section */
400 |
401 | /* Begin PBXSourcesBuildPhase section */
402 | 00E356EA1AD99517003FC87E /* Sources */ = {
403 | isa = PBXSourcesBuildPhase;
404 | buildActionMask = 2147483647;
405 | files = (
406 | 00E356F31AD99517003FC87E /* VideoCallTests.m in Sources */,
407 | );
408 | runOnlyForDeploymentPostprocessing = 0;
409 | };
410 | 13B07F871A680F5B00A75B9A /* Sources */ = {
411 | isa = PBXSourcesBuildPhase;
412 | buildActionMask = 2147483647;
413 | files = (
414 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
415 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
416 | );
417 | runOnlyForDeploymentPostprocessing = 0;
418 | };
419 | /* End PBXSourcesBuildPhase section */
420 |
421 | /* Begin PBXTargetDependency section */
422 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
423 | isa = PBXTargetDependency;
424 | target = 13B07F861A680F5B00A75B9A /* VideoCall */;
425 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
426 | };
427 | /* End PBXTargetDependency section */
428 |
429 | /* Begin XCBuildConfiguration section */
430 | 00E356F61AD99517003FC87E /* Debug */ = {
431 | isa = XCBuildConfiguration;
432 | baseConfigurationReference = F7F1F6FF47184640C1705C45 /* Pods-VideoCall-VideoCallTests.debug.xcconfig */;
433 | buildSettings = {
434 | BUNDLE_LOADER = "$(TEST_HOST)";
435 | GCC_PREPROCESSOR_DEFINITIONS = (
436 | "DEBUG=1",
437 | "$(inherited)",
438 | );
439 | INFOPLIST_FILE = VideoCallTests/Info.plist;
440 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
441 | LD_RUNPATH_SEARCH_PATHS = (
442 | "$(inherited)",
443 | "@executable_path/Frameworks",
444 | "@loader_path/Frameworks",
445 | );
446 | OTHER_LDFLAGS = (
447 | "-ObjC",
448 | "-lc++",
449 | "$(inherited)",
450 | );
451 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
452 | PRODUCT_NAME = "$(TARGET_NAME)";
453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VideoCall.app/VideoCall";
454 | };
455 | name = Debug;
456 | };
457 | 00E356F71AD99517003FC87E /* Release */ = {
458 | isa = XCBuildConfiguration;
459 | baseConfigurationReference = 2A0DAC9149E78C4B668610BE /* Pods-VideoCall-VideoCallTests.release.xcconfig */;
460 | buildSettings = {
461 | BUNDLE_LOADER = "$(TEST_HOST)";
462 | COPY_PHASE_STRIP = NO;
463 | INFOPLIST_FILE = VideoCallTests/Info.plist;
464 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
465 | LD_RUNPATH_SEARCH_PATHS = (
466 | "$(inherited)",
467 | "@executable_path/Frameworks",
468 | "@loader_path/Frameworks",
469 | );
470 | OTHER_LDFLAGS = (
471 | "-ObjC",
472 | "-lc++",
473 | "$(inherited)",
474 | );
475 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
476 | PRODUCT_NAME = "$(TARGET_NAME)";
477 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/VideoCall.app/VideoCall";
478 | };
479 | name = Release;
480 | };
481 | 13B07F941A680F5B00A75B9A /* Debug */ = {
482 | isa = XCBuildConfiguration;
483 | baseConfigurationReference = 87E52E3A0BBBF66429F482BF /* Pods-VideoCall.debug.xcconfig */;
484 | buildSettings = {
485 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
486 | CLANG_ENABLE_MODULES = YES;
487 | CURRENT_PROJECT_VERSION = 1;
488 | ENABLE_BITCODE = NO;
489 | INFOPLIST_FILE = VideoCall/Info.plist;
490 | LD_RUNPATH_SEARCH_PATHS = (
491 | "$(inherited)",
492 | "@executable_path/Frameworks",
493 | );
494 | OTHER_LDFLAGS = (
495 | "$(inherited)",
496 | "-ObjC",
497 | "-lc++",
498 | );
499 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
500 | PRODUCT_NAME = VideoCall;
501 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
502 | SWIFT_VERSION = 5.0;
503 | VERSIONING_SYSTEM = "apple-generic";
504 | };
505 | name = Debug;
506 | };
507 | 13B07F951A680F5B00A75B9A /* Release */ = {
508 | isa = XCBuildConfiguration;
509 | baseConfigurationReference = 70A7D91CF069D73153286CD7 /* Pods-VideoCall.release.xcconfig */;
510 | buildSettings = {
511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
512 | CLANG_ENABLE_MODULES = YES;
513 | CURRENT_PROJECT_VERSION = 1;
514 | INFOPLIST_FILE = VideoCall/Info.plist;
515 | LD_RUNPATH_SEARCH_PATHS = (
516 | "$(inherited)",
517 | "@executable_path/Frameworks",
518 | );
519 | OTHER_LDFLAGS = (
520 | "$(inherited)",
521 | "-ObjC",
522 | "-lc++",
523 | );
524 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
525 | PRODUCT_NAME = VideoCall;
526 | SWIFT_VERSION = 5.0;
527 | VERSIONING_SYSTEM = "apple-generic";
528 | };
529 | name = Release;
530 | };
531 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
532 | isa = XCBuildConfiguration;
533 | buildSettings = {
534 | ALWAYS_SEARCH_USER_PATHS = NO;
535 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
536 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
537 | CLANG_CXX_LIBRARY = "libc++";
538 | CLANG_ENABLE_MODULES = YES;
539 | CLANG_ENABLE_OBJC_ARC = YES;
540 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
541 | CLANG_WARN_BOOL_CONVERSION = YES;
542 | CLANG_WARN_COMMA = YES;
543 | CLANG_WARN_CONSTANT_CONVERSION = YES;
544 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
545 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
546 | CLANG_WARN_EMPTY_BODY = YES;
547 | CLANG_WARN_ENUM_CONVERSION = YES;
548 | CLANG_WARN_INFINITE_RECURSION = YES;
549 | CLANG_WARN_INT_CONVERSION = YES;
550 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
551 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
552 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
553 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
554 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
555 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
556 | CLANG_WARN_STRICT_PROTOTYPES = YES;
557 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
558 | CLANG_WARN_UNREACHABLE_CODE = YES;
559 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
560 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
561 | COPY_PHASE_STRIP = NO;
562 | ENABLE_STRICT_OBJC_MSGSEND = YES;
563 | ENABLE_TESTABILITY = YES;
564 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
565 | GCC_C_LANGUAGE_STANDARD = gnu99;
566 | GCC_DYNAMIC_NO_PIC = NO;
567 | GCC_NO_COMMON_BLOCKS = YES;
568 | GCC_OPTIMIZATION_LEVEL = 0;
569 | GCC_PREPROCESSOR_DEFINITIONS = (
570 | "DEBUG=1",
571 | "$(inherited)",
572 | );
573 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
574 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
575 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
576 | GCC_WARN_UNDECLARED_SELECTOR = YES;
577 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
578 | GCC_WARN_UNUSED_FUNCTION = YES;
579 | GCC_WARN_UNUSED_VARIABLE = YES;
580 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
581 | LD_RUNPATH_SEARCH_PATHS = (
582 | /usr/lib/swift,
583 | "$(inherited)",
584 | );
585 | LIBRARY_SEARCH_PATHS = (
586 | "\"$(SDKROOT)/usr/lib/swift\"",
587 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
588 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
589 | "\"$(inherited)\"",
590 | );
591 | MTL_ENABLE_DEBUG_INFO = YES;
592 | ONLY_ACTIVE_ARCH = YES;
593 | SDKROOT = iphoneos;
594 | };
595 | name = Debug;
596 | };
597 | 83CBBA211A601CBA00E9B192 /* Release */ = {
598 | isa = XCBuildConfiguration;
599 | buildSettings = {
600 | ALWAYS_SEARCH_USER_PATHS = NO;
601 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
602 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
603 | CLANG_CXX_LIBRARY = "libc++";
604 | CLANG_ENABLE_MODULES = YES;
605 | CLANG_ENABLE_OBJC_ARC = YES;
606 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
607 | CLANG_WARN_BOOL_CONVERSION = YES;
608 | CLANG_WARN_COMMA = YES;
609 | CLANG_WARN_CONSTANT_CONVERSION = YES;
610 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
611 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
612 | CLANG_WARN_EMPTY_BODY = YES;
613 | CLANG_WARN_ENUM_CONVERSION = YES;
614 | CLANG_WARN_INFINITE_RECURSION = YES;
615 | CLANG_WARN_INT_CONVERSION = YES;
616 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
617 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
618 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
619 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
620 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
621 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
622 | CLANG_WARN_STRICT_PROTOTYPES = YES;
623 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
624 | CLANG_WARN_UNREACHABLE_CODE = YES;
625 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
626 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
627 | COPY_PHASE_STRIP = YES;
628 | ENABLE_NS_ASSERTIONS = NO;
629 | ENABLE_STRICT_OBJC_MSGSEND = YES;
630 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
631 | GCC_C_LANGUAGE_STANDARD = gnu99;
632 | GCC_NO_COMMON_BLOCKS = YES;
633 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
634 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
635 | GCC_WARN_UNDECLARED_SELECTOR = YES;
636 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
637 | GCC_WARN_UNUSED_FUNCTION = YES;
638 | GCC_WARN_UNUSED_VARIABLE = YES;
639 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
640 | LD_RUNPATH_SEARCH_PATHS = (
641 | /usr/lib/swift,
642 | "$(inherited)",
643 | );
644 | LIBRARY_SEARCH_PATHS = (
645 | "\"$(SDKROOT)/usr/lib/swift\"",
646 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
647 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
648 | "\"$(inherited)\"",
649 | );
650 | MTL_ENABLE_DEBUG_INFO = NO;
651 | SDKROOT = iphoneos;
652 | VALIDATE_PRODUCT = YES;
653 | };
654 | name = Release;
655 | };
656 | /* End XCBuildConfiguration section */
657 |
658 | /* Begin XCConfigurationList section */
659 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VideoCallTests" */ = {
660 | isa = XCConfigurationList;
661 | buildConfigurations = (
662 | 00E356F61AD99517003FC87E /* Debug */,
663 | 00E356F71AD99517003FC87E /* Release */,
664 | );
665 | defaultConfigurationIsVisible = 0;
666 | defaultConfigurationName = Release;
667 | };
668 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "VideoCall" */ = {
669 | isa = XCConfigurationList;
670 | buildConfigurations = (
671 | 13B07F941A680F5B00A75B9A /* Debug */,
672 | 13B07F951A680F5B00A75B9A /* Release */,
673 | );
674 | defaultConfigurationIsVisible = 0;
675 | defaultConfigurationName = Release;
676 | };
677 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "VideoCall" */ = {
678 | isa = XCConfigurationList;
679 | buildConfigurations = (
680 | 83CBBA201A601CBA00E9B192 /* Debug */,
681 | 83CBBA211A601CBA00E9B192 /* Release */,
682 | );
683 | defaultConfigurationIsVisible = 0;
684 | defaultConfigurationName = Release;
685 | };
686 | /* End XCConfigurationList section */
687 | };
688 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
689 | }
690 |
--------------------------------------------------------------------------------