null}
66 | />,
67 | );
68 | const button = getByTestId(TEST_ID_SUBMIT_BUTTON);
69 | const emailInput = getByTestId(TEST_ID_EMAIL_INPUT);
70 | const passwordInput = getByTestId(TEST_ID_PASSWORD_INPUT);
71 |
72 | // Testing behaviors
73 | await waitFor(() => {
74 | fireEvent.changeText(emailInput, email);
75 | expect(emailInput.props.value).toBe(email);
76 |
77 | fireEvent.changeText(passwordInput, password);
78 | expect(passwordInput.props.value).toBe(password);
79 |
80 | /**
81 | * Here we are asserting that onSubmit is not just called
82 | * but it is called with expected output.
83 | */
84 | fireEvent.press(button);
85 | expect(onSubmit).toHaveBeenCalledTimes(1);
86 | expect(output).toEqual(expectedOutput);
87 | });
88 | });
89 | });
90 |
--------------------------------------------------------------------------------
/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 init
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 init
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 | :init
68 | @rem Get command-line arguments, handling Windows variants
69 |
70 | if not "%OS%" == "Windows_NT" goto win9xME_args
71 |
72 | :win9xME_args
73 | @rem Slurp the command line arguments.
74 | set CMD_LINE_ARGS=
75 | set _SKIP=2
76 |
77 | :win9xME_args_slurp
78 | if "x%~1" == "x" goto execute
79 |
80 | set CMD_LINE_ARGS=%*
81 |
82 | :execute
83 | @rem Setup the command line
84 |
85 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
86 |
87 | @rem Execute Gradle
88 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
89 |
90 | :end
91 | @rem End local scope for the variables with windows NT shell
92 | if "%ERRORLEVEL%"=="0" goto mainEnd
93 |
94 | :fail
95 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
96 | rem the _cmd.exe /c_ return code!
97 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
98 | exit /b 1
99 |
100 | :mainEnd
101 | if "%OS%"=="Windows_NT" endlocal
102 |
103 | :omega
104 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/testedapp/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.testedapp;
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/TestedApp.xcodeproj/xcshareddata/xcschemes/TestedApp.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 |
--------------------------------------------------------------------------------
/ios/TestedApp.xcodeproj/xcshareddata/xcschemes/TestedApp-tvOS.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 |
--------------------------------------------------------------------------------
/app/screens/LoginScreen/EmailPasswordForm/index.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | *
3 | * EmailPasswordForm
4 | *
5 | */
6 |
7 | import React, { useRef } from 'react';
8 | import { View, TextInput } from 'react-native';
9 | import * as Animatable from 'react-native-animatable';
10 | import * as yup from 'yup';
11 | import { Formik } from 'formik';
12 |
13 | import Button from 'theme/Button';
14 | import Input from 'theme/Input';
15 | import PasswordInput from 'theme/Input/PasswordInput';
16 | import FormattedMessage, { useFormattedMessage } from 'theme/FormattedMessage';
17 |
18 | import style from './style';
19 | import messages from './messages';
20 | import {
21 | TEST_ID_EMAIL_INPUT,
22 | TEST_ID_PASSWORD_INPUT,
23 | TEST_ID_SUBMIT_BUTTON,
24 | } from '../constants';
25 |
26 | interface EmailPasswordFormProps {
27 | onSubmit: (data: EmailPasswordFormState) => void;
28 | onForgotPasswordPress: () => void;
29 | }
30 |
31 | type EmailPasswordFormState = {
32 | email: string;
33 | password: string;
34 | };
35 |
36 | const schema = yup.object().shape({
37 | email: yup.string().email('Invalid email address').required('Required'),
38 | password: yup.string().required('Required'),
39 | });
40 |
41 | const initialValue = {
42 | email: '',
43 | password: '',
44 | };
45 |
46 | const EmailPasswordForm: React.FC = (props) => {
47 | const passwordFieldRef = useRef();
48 |
49 | const emailPlaceholder = useFormattedMessage(messages.emailPlaceholder);
50 | const passwordPlaceholder = useFormattedMessage(messages.passwordPlaceholder);
51 | return (
52 |
53 |
58 | {({
59 | handleChange,
60 | handleBlur,
61 | handleSubmit,
62 | values,
63 | errors,
64 | isValid,
65 | touched,
66 | }) => (
67 | <>
68 |
69 | {
80 | if (passwordFieldRef?.current?.focus) {
81 | passwordFieldRef.current?.focus();
82 | }
83 | }}
84 | error={touched.email ? errors.email : null}
85 | label={}
86 | testID={TEST_ID_EMAIL_INPUT}
87 | />
88 |
89 |
90 |
101 | }
102 | testID={TEST_ID_PASSWORD_INPUT}
103 | />
104 |
105 |
110 |
111 |
117 | }
118 | onPress={handleSubmit}
119 | testID={TEST_ID_SUBMIT_BUTTON}
120 | />
121 |
122 | >
123 | )}
124 |
125 |
126 | );
127 | };
128 |
129 | export default EmailPasswordForm;
130 |
--------------------------------------------------------------------------------
/ios/TestedApp/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
25 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/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 | # Determine the Java command to use to start the JVM.
86 | if [ -n "$JAVA_HOME" ] ; then
87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 | # IBM's JDK on AIX uses strange locations for the executables
89 | JAVACMD="$JAVA_HOME/jre/sh/java"
90 | else
91 | JAVACMD="$JAVA_HOME/bin/java"
92 | fi
93 | if [ ! -x "$JAVACMD" ] ; then
94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95 |
96 | Please set the JAVA_HOME variable in your environment to match the
97 | location of your Java installation."
98 | fi
99 | else
100 | JAVACMD="java"
101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102 |
103 | Please set the JAVA_HOME variable in your environment to match the
104 | location of your Java installation."
105 | fi
106 |
107 | # Increase the maximum file descriptors if we can.
108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 | MAX_FD_LIMIT=`ulimit -H -n`
110 | if [ $? -eq 0 ] ; then
111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 | MAX_FD="$MAX_FD_LIMIT"
113 | fi
114 | ulimit -n $MAX_FD
115 | if [ $? -ne 0 ] ; then
116 | warn "Could not set maximum file descriptor limit: $MAX_FD"
117 | fi
118 | else
119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 | fi
121 | fi
122 |
123 | # For Darwin, add options to specify how the application appears in the dock
124 | if $darwin; then
125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 | fi
127 |
128 | # For Cygwin or MSYS, switch paths to Windows format before running java
129 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132 | JAVACMD=`cygpath --unix "$JAVACMD"`
133 |
134 | # We build the pattern for arguments to be converted via cygpath
135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
136 | SEP=""
137 | for dir in $ROOTDIRSRAW ; do
138 | ROOTDIRS="$ROOTDIRS$SEP$dir"
139 | SEP="|"
140 | done
141 | OURCYGPATTERN="(^($ROOTDIRS))"
142 | # Add a user-defined pattern to the cygpath arguments
143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
145 | fi
146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
147 | i=0
148 | for arg in "$@" ; do
149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
151 |
152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
154 | else
155 | eval `echo args$i`="\"$arg\""
156 | fi
157 | i=`expr $i + 1`
158 | done
159 | case $i in
160 | 0) set -- ;;
161 | 1) set -- "$args0" ;;
162 | 2) set -- "$args0" "$args1" ;;
163 | 3) set -- "$args0" "$args1" "$args2" ;;
164 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
165 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
166 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
167 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
168 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
169 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
170 | esac
171 | fi
172 |
173 | # Escape application args
174 | save () {
175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
176 | echo " "
177 | }
178 | APP_ARGS=`save "$@"`
179 |
180 | # Collect all arguments for the java command, following the shell quoting and substitution rules
181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
182 |
183 | exec "$JAVACMD" "$@"
184 |
--------------------------------------------------------------------------------
/android/app/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "859110743609",
4 | "firebase_url": "https://zsajjad-93.firebaseio.com",
5 | "project_id": "zsajjad-93",
6 | "storage_bucket": "zsajjad-93.appspot.com"
7 | },
8 | "client": [
9 | {
10 | "client_info": {
11 | "mobilesdk_app_id": "1:859110743609:android:a92d09cbe1e8353c",
12 | "android_client_info": {
13 | "package_name": "com.businesscards"
14 | }
15 | },
16 | "oauth_client": [
17 | {
18 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
19 | "client_type": 3
20 | }
21 | ],
22 | "api_key": [
23 | {
24 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
25 | }
26 | ],
27 | "services": {
28 | "appinvite_service": {
29 | "other_platform_oauth_client": [
30 | {
31 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
32 | "client_type": 3
33 | },
34 | {
35 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
36 | "client_type": 2,
37 | "ios_info": {
38 | "bundle_id": "com.peekaboosdk.sample"
39 | }
40 | }
41 | ]
42 | }
43 | }
44 | },
45 | {
46 | "client_info": {
47 | "mobilesdk_app_id": "1:859110743609:android:fa8ba48339ecf41b9637e8",
48 | "android_client_info": {
49 | "package_name": "com.example.hello"
50 | }
51 | },
52 | "oauth_client": [
53 | {
54 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
55 | "client_type": 3
56 | }
57 | ],
58 | "api_key": [
59 | {
60 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
61 | }
62 | ],
63 | "services": {
64 | "appinvite_service": {
65 | "other_platform_oauth_client": [
66 | {
67 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
68 | "client_type": 3
69 | },
70 | {
71 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
72 | "client_type": 2,
73 | "ios_info": {
74 | "bundle_id": "com.peekaboosdk.sample"
75 | }
76 | }
77 | ]
78 | }
79 | }
80 | },
81 | {
82 | "client_info": {
83 | "mobilesdk_app_id": "1:859110743609:android:1074fd929f9e489c",
84 | "android_client_info": {
85 | "package_name": "com.peekaboo.geofencingtesting"
86 | }
87 | },
88 | "oauth_client": [
89 | {
90 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
91 | "client_type": 3
92 | }
93 | ],
94 | "api_key": [
95 | {
96 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
97 | }
98 | ],
99 | "services": {
100 | "appinvite_service": {
101 | "other_platform_oauth_client": [
102 | {
103 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
104 | "client_type": 3
105 | },
106 | {
107 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
108 | "client_type": 2,
109 | "ios_info": {
110 | "bundle_id": "com.peekaboosdk.sample"
111 | }
112 | }
113 | ]
114 | }
115 | }
116 | },
117 | {
118 | "client_info": {
119 | "mobilesdk_app_id": "1:859110743609:android:d6a523535a1477cc",
120 | "android_client_info": {
121 | "package_name": "com.peekaboo.partner.partnersampleapp"
122 | }
123 | },
124 | "oauth_client": [
125 | {
126 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
127 | "client_type": 3
128 | }
129 | ],
130 | "api_key": [
131 | {
132 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
133 | }
134 | ],
135 | "services": {
136 | "appinvite_service": {
137 | "other_platform_oauth_client": [
138 | {
139 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
140 | "client_type": 3
141 | },
142 | {
143 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
144 | "client_type": 2,
145 | "ios_info": {
146 | "bundle_id": "com.peekaboosdk.sample"
147 | }
148 | }
149 | ]
150 | }
151 | }
152 | },
153 | {
154 | "client_info": {
155 | "mobilesdk_app_id": "1:859110743609:android:3142942995fd75339637e8",
156 | "android_client_info": {
157 | "package_name": "com.testedapp"
158 | }
159 | },
160 | "oauth_client": [
161 | {
162 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
163 | "client_type": 3
164 | }
165 | ],
166 | "api_key": [
167 | {
168 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
169 | }
170 | ],
171 | "services": {
172 | "appinvite_service": {
173 | "other_platform_oauth_client": [
174 | {
175 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
176 | "client_type": 3
177 | },
178 | {
179 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
180 | "client_type": 2,
181 | "ios_info": {
182 | "bundle_id": "com.peekaboosdk.sample"
183 | }
184 | }
185 | ]
186 | }
187 | }
188 | },
189 | {
190 | "client_info": {
191 | "mobilesdk_app_id": "1:859110743609:android:c667e523b08a65d0",
192 | "android_client_info": {
193 | "package_name": "com.zsajjad"
194 | }
195 | },
196 | "oauth_client": [
197 | {
198 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
199 | "client_type": 3
200 | }
201 | ],
202 | "api_key": [
203 | {
204 | "current_key": "AIzaSyCfwsAAwi1tRoavM2RM6fpzS-HmvrgG-Q0"
205 | }
206 | ],
207 | "services": {
208 | "appinvite_service": {
209 | "other_platform_oauth_client": [
210 | {
211 | "client_id": "859110743609-8dg1lmamdlimijesu330l4qqd4qrn3dj.apps.googleusercontent.com",
212 | "client_type": 3
213 | },
214 | {
215 | "client_id": "859110743609-bujbho50tib5uittfsmf3bbne19upvbp.apps.googleusercontent.com",
216 | "client_type": 2,
217 | "ios_info": {
218 | "bundle_id": "com.peekaboosdk.sample"
219 | }
220 | }
221 | ]
222 | }
223 | }
224 | }
225 | ],
226 | "configuration_version": "1"
227 | }
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 | apply plugin: 'com.google.gms.google-services'
3 |
4 | import com.android.build.OutputFile
5 |
6 | /**
7 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
8 | * and bundleReleaseJsAndAssets).
9 | * These basically call `react-native bundle` with the correct arguments during the Android build
10 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
11 | * bundle directly from the development server. Below you can see all the possible configurations
12 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
13 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
14 | *
15 | * project.ext.react = [
16 | * // the name of the generated asset file containing your JS bundle
17 | * bundleAssetName: "index.android.bundle",
18 | *
19 | * // the entry file for bundle generation. If none specified and
20 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
21 | * // default. Can be overridden with ENTRY_FILE environment variable.
22 | * entryFile: "index.android.js",
23 | *
24 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
25 | * bundleCommand: "ram-bundle",
26 | *
27 | * // whether to bundle JS and assets in debug mode
28 | * bundleInDebug: false,
29 | *
30 | * // whether to bundle JS and assets in release mode
31 | * bundleInRelease: true,
32 | *
33 | * // whether to bundle JS and assets in another build variant (if configured).
34 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
35 | * // The configuration property can be in the following formats
36 | * // 'bundleIn${productFlavor}${buildType}'
37 | * // 'bundleIn${buildType}'
38 | * // bundleInFreeDebug: true,
39 | * // bundleInPaidRelease: true,
40 | * // bundleInBeta: true,
41 | *
42 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
43 | * // for example: to disable dev mode in the staging build type (if configured)
44 | * devDisabledInStaging: true,
45 | * // The configuration property can be in the following formats
46 | * // 'devDisabledIn${productFlavor}${buildType}'
47 | * // 'devDisabledIn${buildType}'
48 | *
49 | * // the root of your project, i.e. where "package.json" lives
50 | * root: "../../",
51 | *
52 | * // where to put the JS bundle asset in debug mode
53 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
54 | *
55 | * // where to put the JS bundle asset in release mode
56 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
57 | *
58 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
59 | * // require('./image.png')), in debug mode
60 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
61 | *
62 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
63 | * // require('./image.png')), in release mode
64 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
65 | *
66 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
67 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
68 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
69 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
70 | * // for example, you might want to remove it from here.
71 | * inputExcludes: ["android/**", "ios/**"],
72 | *
73 | * // override which node gets called and with what additional arguments
74 | * nodeExecutableAndArgs: ["node"],
75 | *
76 | * // supply additional arguments to the packager
77 | * extraPackagerArgs: []
78 | * ]
79 | */
80 |
81 | project.ext.react = [
82 | enableHermes: false, // clean and rebuild if changing
83 | ]
84 |
85 | apply from: "../../node_modules/react-native/react.gradle"
86 |
87 | /**
88 | * Set this to true to create two separate APKs instead of one:
89 | * - An APK that only works on ARM devices
90 | * - An APK that only works on x86 devices
91 | * The advantage is the size of the APK is reduced by about 4MB.
92 | * Upload all the APKs to the Play Store and people will download
93 | * the correct one based on the CPU architecture of their device.
94 | */
95 | def enableSeparateBuildPerCPUArchitecture = false
96 |
97 | /**
98 | * Run Proguard to shrink the Java bytecode in release builds.
99 | */
100 | def enableProguardInReleaseBuilds = false
101 |
102 | /**
103 | * The preferred build flavor of JavaScriptCore.
104 | *
105 | * For example, to use the international variant, you can use:
106 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
107 | *
108 | * The international variant includes ICU i18n library and necessary data
109 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
110 | * give correct results when using with locales other than en-US. Note that
111 | * this variant is about 6MiB larger per architecture than default.
112 | */
113 | def jscFlavor = 'org.webkit:android-jsc:+'
114 |
115 | /**
116 | * Whether to enable the Hermes VM.
117 | *
118 | * This should be set on project.ext.react and mirrored here. If it is not set
119 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
120 | * and the benefits of using Hermes will therefore be sharply reduced.
121 | */
122 | def enableHermes = project.ext.react.get("enableHermes", false);
123 |
124 | android {
125 | compileSdkVersion rootProject.ext.compileSdkVersion
126 |
127 | compileOptions {
128 | sourceCompatibility JavaVersion.VERSION_1_8
129 | targetCompatibility JavaVersion.VERSION_1_8
130 | }
131 |
132 | defaultConfig {
133 | applicationId "com.testedapp"
134 | minSdkVersion rootProject.ext.minSdkVersion
135 | targetSdkVersion rootProject.ext.targetSdkVersion
136 | versionCode 1
137 | versionName "1.0"
138 | }
139 | splits {
140 | abi {
141 | reset()
142 | enable enableSeparateBuildPerCPUArchitecture
143 | universalApk false // If true, also generate a universal APK
144 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
145 | }
146 | }
147 | signingConfigs {
148 | debug {
149 | storeFile file('debug.keystore')
150 | storePassword 'android'
151 | keyAlias 'androiddebugkey'
152 | keyPassword 'android'
153 | }
154 | }
155 | buildTypes {
156 | debug {
157 | signingConfig signingConfigs.debug
158 | }
159 | release {
160 | // Caution! In production, you need to generate your own keystore file.
161 | // see https://reactnative.dev/docs/signed-apk-android.
162 | // signingConfig signingConfigs.debug
163 | minifyEnabled enableProguardInReleaseBuilds
164 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
165 | }
166 | }
167 |
168 | // applicationVariants are e.g. debug, release
169 | applicationVariants.all { variant ->
170 | variant.outputs.each { output ->
171 | // For each separate APK per architecture, set a unique version code as described here:
172 | // https://developer.android.com/studio/build/configure-apk-splits.html
173 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
174 | def abi = output.getFilter(OutputFile.ABI)
175 | if (abi != null) { // null for the universal-debug, universal-release variants
176 | output.versionCodeOverride =
177 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
178 | }
179 |
180 | }
181 | }
182 | }
183 |
184 | dependencies {
185 | implementation fileTree(dir: "libs", include: ["*.jar"])
186 | implementation platform('com.google.firebase:firebase-bom:26.1.0')
187 |
188 | implementation 'com.google.firebase:firebase-analytics'
189 |
190 | //noinspection GradleDynamicVersion
191 | implementation "com.facebook.react:react-native:+" // From node_modules
192 |
193 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
194 |
195 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
196 | exclude group:'com.facebook.fbjni'
197 | }
198 |
199 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
200 | exclude group:'com.facebook.flipper'
201 | exclude group:'com.squareup.okhttp3', module:'okhttp'
202 | }
203 |
204 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
205 | exclude group:'com.facebook.flipper'
206 | }
207 |
208 | if (enableHermes) {
209 | def hermesPath = "../../node_modules/hermes-engine/android/";
210 | debugImplementation files(hermesPath + "hermes-debug.aar")
211 | releaseImplementation files(hermesPath + "hermes-release.aar")
212 | } else {
213 | implementation jscFlavor
214 | }
215 | }
216 |
217 | // Run this once to be able to run the application with BUCK
218 | // puts all compile dependencies into folder libs for BUCK to use
219 | task copyDownloadableDepsToLibs(type: Copy) {
220 | from configurations.compile
221 | into 'libs'
222 | }
223 |
224 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
225 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.4)
4 | - CocoaLibEvent (1.0.0)
5 | - DoubleConversion (1.1.6)
6 | - FBLazyVector (0.63.3)
7 | - FBReactNativeSpec (0.63.3):
8 | - Folly (= 2020.01.13.00)
9 | - RCTRequired (= 0.63.3)
10 | - RCTTypeSafety (= 0.63.3)
11 | - React-Core (= 0.63.3)
12 | - React-jsi (= 0.63.3)
13 | - ReactCommon/turbomodule/core (= 0.63.3)
14 | - Flipper (0.54.0):
15 | - Flipper-Folly (~> 2.2)
16 | - Flipper-RSocket (~> 1.1)
17 | - Flipper-DoubleConversion (1.1.7)
18 | - Flipper-Folly (2.3.0):
19 | - boost-for-react-native
20 | - CocoaLibEvent (~> 1.0)
21 | - Flipper-DoubleConversion
22 | - Flipper-Glog
23 | - OpenSSL-Universal (= 1.0.2.20)
24 | - Flipper-Glog (0.3.6)
25 | - Flipper-PeerTalk (0.0.4)
26 | - Flipper-RSocket (1.1.0):
27 | - Flipper-Folly (~> 2.2)
28 | - FlipperKit (0.54.0):
29 | - FlipperKit/Core (= 0.54.0)
30 | - FlipperKit/Core (0.54.0):
31 | - Flipper (~> 0.54.0)
32 | - FlipperKit/CppBridge
33 | - FlipperKit/FBCxxFollyDynamicConvert
34 | - FlipperKit/FBDefines
35 | - FlipperKit/FKPortForwarding
36 | - FlipperKit/CppBridge (0.54.0):
37 | - Flipper (~> 0.54.0)
38 | - FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
39 | - Flipper-Folly (~> 2.2)
40 | - FlipperKit/FBDefines (0.54.0)
41 | - FlipperKit/FKPortForwarding (0.54.0):
42 | - CocoaAsyncSocket (~> 7.6)
43 | - Flipper-PeerTalk (~> 0.0.4)
44 | - FlipperKit/FlipperKitHighlightOverlay (0.54.0)
45 | - FlipperKit/FlipperKitLayoutPlugin (0.54.0):
46 | - FlipperKit/Core
47 | - FlipperKit/FlipperKitHighlightOverlay
48 | - FlipperKit/FlipperKitLayoutTextSearchable
49 | - YogaKit (~> 1.18)
50 | - FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
51 | - FlipperKit/FlipperKitNetworkPlugin (0.54.0):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitReactPlugin (0.54.0):
54 | - FlipperKit/Core
55 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
56 | - FlipperKit/Core
57 | - FlipperKit/SKIOSNetworkPlugin (0.54.0):
58 | - FlipperKit/Core
59 | - FlipperKit/FlipperKitNetworkPlugin
60 | - Folly (2020.01.13.00):
61 | - boost-for-react-native
62 | - DoubleConversion
63 | - Folly/Default (= 2020.01.13.00)
64 | - glog
65 | - Folly/Default (2020.01.13.00):
66 | - boost-for-react-native
67 | - DoubleConversion
68 | - glog
69 | - glog (0.3.5)
70 | - OpenSSL-Universal (1.0.2.20):
71 | - OpenSSL-Universal/Static (= 1.0.2.20)
72 | - OpenSSL-Universal/Static (1.0.2.20)
73 | - RCTRequired (0.63.3)
74 | - RCTTypeSafety (0.63.3):
75 | - FBLazyVector (= 0.63.3)
76 | - Folly (= 2020.01.13.00)
77 | - RCTRequired (= 0.63.3)
78 | - React-Core (= 0.63.3)
79 | - React (0.63.3):
80 | - React-Core (= 0.63.3)
81 | - React-Core/DevSupport (= 0.63.3)
82 | - React-Core/RCTWebSocket (= 0.63.3)
83 | - React-RCTActionSheet (= 0.63.3)
84 | - React-RCTAnimation (= 0.63.3)
85 | - React-RCTBlob (= 0.63.3)
86 | - React-RCTImage (= 0.63.3)
87 | - React-RCTLinking (= 0.63.3)
88 | - React-RCTNetwork (= 0.63.3)
89 | - React-RCTSettings (= 0.63.3)
90 | - React-RCTText (= 0.63.3)
91 | - React-RCTVibration (= 0.63.3)
92 | - React-callinvoker (0.63.3)
93 | - React-Core (0.63.3):
94 | - Folly (= 2020.01.13.00)
95 | - glog
96 | - React-Core/Default (= 0.63.3)
97 | - React-cxxreact (= 0.63.3)
98 | - React-jsi (= 0.63.3)
99 | - React-jsiexecutor (= 0.63.3)
100 | - Yoga
101 | - React-Core/CoreModulesHeaders (0.63.3):
102 | - Folly (= 2020.01.13.00)
103 | - glog
104 | - React-Core/Default
105 | - React-cxxreact (= 0.63.3)
106 | - React-jsi (= 0.63.3)
107 | - React-jsiexecutor (= 0.63.3)
108 | - Yoga
109 | - React-Core/Default (0.63.3):
110 | - Folly (= 2020.01.13.00)
111 | - glog
112 | - React-cxxreact (= 0.63.3)
113 | - React-jsi (= 0.63.3)
114 | - React-jsiexecutor (= 0.63.3)
115 | - Yoga
116 | - React-Core/DevSupport (0.63.3):
117 | - Folly (= 2020.01.13.00)
118 | - glog
119 | - React-Core/Default (= 0.63.3)
120 | - React-Core/RCTWebSocket (= 0.63.3)
121 | - React-cxxreact (= 0.63.3)
122 | - React-jsi (= 0.63.3)
123 | - React-jsiexecutor (= 0.63.3)
124 | - React-jsinspector (= 0.63.3)
125 | - Yoga
126 | - React-Core/RCTActionSheetHeaders (0.63.3):
127 | - Folly (= 2020.01.13.00)
128 | - glog
129 | - React-Core/Default
130 | - React-cxxreact (= 0.63.3)
131 | - React-jsi (= 0.63.3)
132 | - React-jsiexecutor (= 0.63.3)
133 | - Yoga
134 | - React-Core/RCTAnimationHeaders (0.63.3):
135 | - Folly (= 2020.01.13.00)
136 | - glog
137 | - React-Core/Default
138 | - React-cxxreact (= 0.63.3)
139 | - React-jsi (= 0.63.3)
140 | - React-jsiexecutor (= 0.63.3)
141 | - Yoga
142 | - React-Core/RCTBlobHeaders (0.63.3):
143 | - Folly (= 2020.01.13.00)
144 | - glog
145 | - React-Core/Default
146 | - React-cxxreact (= 0.63.3)
147 | - React-jsi (= 0.63.3)
148 | - React-jsiexecutor (= 0.63.3)
149 | - Yoga
150 | - React-Core/RCTImageHeaders (0.63.3):
151 | - Folly (= 2020.01.13.00)
152 | - glog
153 | - React-Core/Default
154 | - React-cxxreact (= 0.63.3)
155 | - React-jsi (= 0.63.3)
156 | - React-jsiexecutor (= 0.63.3)
157 | - Yoga
158 | - React-Core/RCTLinkingHeaders (0.63.3):
159 | - Folly (= 2020.01.13.00)
160 | - glog
161 | - React-Core/Default
162 | - React-cxxreact (= 0.63.3)
163 | - React-jsi (= 0.63.3)
164 | - React-jsiexecutor (= 0.63.3)
165 | - Yoga
166 | - React-Core/RCTNetworkHeaders (0.63.3):
167 | - Folly (= 2020.01.13.00)
168 | - glog
169 | - React-Core/Default
170 | - React-cxxreact (= 0.63.3)
171 | - React-jsi (= 0.63.3)
172 | - React-jsiexecutor (= 0.63.3)
173 | - Yoga
174 | - React-Core/RCTSettingsHeaders (0.63.3):
175 | - Folly (= 2020.01.13.00)
176 | - glog
177 | - React-Core/Default
178 | - React-cxxreact (= 0.63.3)
179 | - React-jsi (= 0.63.3)
180 | - React-jsiexecutor (= 0.63.3)
181 | - Yoga
182 | - React-Core/RCTTextHeaders (0.63.3):
183 | - Folly (= 2020.01.13.00)
184 | - glog
185 | - React-Core/Default
186 | - React-cxxreact (= 0.63.3)
187 | - React-jsi (= 0.63.3)
188 | - React-jsiexecutor (= 0.63.3)
189 | - Yoga
190 | - React-Core/RCTVibrationHeaders (0.63.3):
191 | - Folly (= 2020.01.13.00)
192 | - glog
193 | - React-Core/Default
194 | - React-cxxreact (= 0.63.3)
195 | - React-jsi (= 0.63.3)
196 | - React-jsiexecutor (= 0.63.3)
197 | - Yoga
198 | - React-Core/RCTWebSocket (0.63.3):
199 | - Folly (= 2020.01.13.00)
200 | - glog
201 | - React-Core/Default (= 0.63.3)
202 | - React-cxxreact (= 0.63.3)
203 | - React-jsi (= 0.63.3)
204 | - React-jsiexecutor (= 0.63.3)
205 | - Yoga
206 | - React-CoreModules (0.63.3):
207 | - FBReactNativeSpec (= 0.63.3)
208 | - Folly (= 2020.01.13.00)
209 | - RCTTypeSafety (= 0.63.3)
210 | - React-Core/CoreModulesHeaders (= 0.63.3)
211 | - React-jsi (= 0.63.3)
212 | - React-RCTImage (= 0.63.3)
213 | - ReactCommon/turbomodule/core (= 0.63.3)
214 | - React-cxxreact (0.63.3):
215 | - boost-for-react-native (= 1.63.0)
216 | - DoubleConversion
217 | - Folly (= 2020.01.13.00)
218 | - glog
219 | - React-callinvoker (= 0.63.3)
220 | - React-jsinspector (= 0.63.3)
221 | - React-jsi (0.63.3):
222 | - boost-for-react-native (= 1.63.0)
223 | - DoubleConversion
224 | - Folly (= 2020.01.13.00)
225 | - glog
226 | - React-jsi/Default (= 0.63.3)
227 | - React-jsi/Default (0.63.3):
228 | - boost-for-react-native (= 1.63.0)
229 | - DoubleConversion
230 | - Folly (= 2020.01.13.00)
231 | - glog
232 | - React-jsiexecutor (0.63.3):
233 | - DoubleConversion
234 | - Folly (= 2020.01.13.00)
235 | - glog
236 | - React-cxxreact (= 0.63.3)
237 | - React-jsi (= 0.63.3)
238 | - React-jsinspector (0.63.3)
239 | - react-native-safe-area-context (3.1.8):
240 | - React-Core
241 | - React-RCTActionSheet (0.63.3):
242 | - React-Core/RCTActionSheetHeaders (= 0.63.3)
243 | - React-RCTAnimation (0.63.3):
244 | - FBReactNativeSpec (= 0.63.3)
245 | - Folly (= 2020.01.13.00)
246 | - RCTTypeSafety (= 0.63.3)
247 | - React-Core/RCTAnimationHeaders (= 0.63.3)
248 | - React-jsi (= 0.63.3)
249 | - ReactCommon/turbomodule/core (= 0.63.3)
250 | - React-RCTBlob (0.63.3):
251 | - FBReactNativeSpec (= 0.63.3)
252 | - Folly (= 2020.01.13.00)
253 | - React-Core/RCTBlobHeaders (= 0.63.3)
254 | - React-Core/RCTWebSocket (= 0.63.3)
255 | - React-jsi (= 0.63.3)
256 | - React-RCTNetwork (= 0.63.3)
257 | - ReactCommon/turbomodule/core (= 0.63.3)
258 | - React-RCTImage (0.63.3):
259 | - FBReactNativeSpec (= 0.63.3)
260 | - Folly (= 2020.01.13.00)
261 | - RCTTypeSafety (= 0.63.3)
262 | - React-Core/RCTImageHeaders (= 0.63.3)
263 | - React-jsi (= 0.63.3)
264 | - React-RCTNetwork (= 0.63.3)
265 | - ReactCommon/turbomodule/core (= 0.63.3)
266 | - React-RCTLinking (0.63.3):
267 | - FBReactNativeSpec (= 0.63.3)
268 | - React-Core/RCTLinkingHeaders (= 0.63.3)
269 | - React-jsi (= 0.63.3)
270 | - ReactCommon/turbomodule/core (= 0.63.3)
271 | - React-RCTNetwork (0.63.3):
272 | - FBReactNativeSpec (= 0.63.3)
273 | - Folly (= 2020.01.13.00)
274 | - RCTTypeSafety (= 0.63.3)
275 | - React-Core/RCTNetworkHeaders (= 0.63.3)
276 | - React-jsi (= 0.63.3)
277 | - ReactCommon/turbomodule/core (= 0.63.3)
278 | - React-RCTSettings (0.63.3):
279 | - FBReactNativeSpec (= 0.63.3)
280 | - Folly (= 2020.01.13.00)
281 | - RCTTypeSafety (= 0.63.3)
282 | - React-Core/RCTSettingsHeaders (= 0.63.3)
283 | - React-jsi (= 0.63.3)
284 | - ReactCommon/turbomodule/core (= 0.63.3)
285 | - React-RCTText (0.63.3):
286 | - React-Core/RCTTextHeaders (= 0.63.3)
287 | - React-RCTVibration (0.63.3):
288 | - FBReactNativeSpec (= 0.63.3)
289 | - Folly (= 2020.01.13.00)
290 | - React-Core/RCTVibrationHeaders (= 0.63.3)
291 | - React-jsi (= 0.63.3)
292 | - ReactCommon/turbomodule/core (= 0.63.3)
293 | - ReactCommon/turbomodule/core (0.63.3):
294 | - DoubleConversion
295 | - Folly (= 2020.01.13.00)
296 | - glog
297 | - React-callinvoker (= 0.63.3)
298 | - React-Core (= 0.63.3)
299 | - React-cxxreact (= 0.63.3)
300 | - React-jsi (= 0.63.3)
301 | - RNCAsyncStorage (1.12.1):
302 | - React-Core
303 | - RNCMaskedView (0.1.10):
304 | - React
305 | - RNGestureHandler (1.8.0):
306 | - React
307 | - RNReanimated (1.13.1):
308 | - React
309 | - RNScreens (2.12.0):
310 | - React-Core
311 | - RNVectorIcons (7.1.0):
312 | - React
313 | - Yoga (1.14.0)
314 | - YogaKit (1.18.1):
315 | - Yoga (~> 1.14)
316 |
317 | DEPENDENCIES:
318 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
319 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
320 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
321 | - Flipper (~> 0.54.0)
322 | - Flipper-DoubleConversion (= 1.1.7)
323 | - Flipper-Folly (~> 2.2)
324 | - Flipper-Glog (= 0.3.6)
325 | - Flipper-PeerTalk (~> 0.0.4)
326 | - Flipper-RSocket (~> 1.1)
327 | - FlipperKit (~> 0.54.0)
328 | - FlipperKit/Core (~> 0.54.0)
329 | - FlipperKit/CppBridge (~> 0.54.0)
330 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
331 | - FlipperKit/FBDefines (~> 0.54.0)
332 | - FlipperKit/FKPortForwarding (~> 0.54.0)
333 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
334 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
335 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
336 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
337 | - FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
338 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
339 | - FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
340 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
341 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
342 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
343 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
344 | - React (from `../node_modules/react-native/`)
345 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
346 | - React-Core (from `../node_modules/react-native/`)
347 | - React-Core/DevSupport (from `../node_modules/react-native/`)
348 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
349 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
350 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
351 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
352 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
353 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
354 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
355 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
356 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
357 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
358 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
359 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
360 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
361 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
362 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
363 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
364 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
365 | - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)"
366 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
367 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
368 | - RNReanimated (from `../node_modules/react-native-reanimated`)
369 | - RNScreens (from `../node_modules/react-native-screens`)
370 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
371 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
372 |
373 | SPEC REPOS:
374 | trunk:
375 | - boost-for-react-native
376 | - CocoaAsyncSocket
377 | - CocoaLibEvent
378 | - Flipper
379 | - Flipper-DoubleConversion
380 | - Flipper-Folly
381 | - Flipper-Glog
382 | - Flipper-PeerTalk
383 | - Flipper-RSocket
384 | - FlipperKit
385 | - OpenSSL-Universal
386 | - YogaKit
387 |
388 | EXTERNAL SOURCES:
389 | DoubleConversion:
390 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
391 | FBLazyVector:
392 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
393 | FBReactNativeSpec:
394 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
395 | Folly:
396 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
397 | glog:
398 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
399 | RCTRequired:
400 | :path: "../node_modules/react-native/Libraries/RCTRequired"
401 | RCTTypeSafety:
402 | :path: "../node_modules/react-native/Libraries/TypeSafety"
403 | React:
404 | :path: "../node_modules/react-native/"
405 | React-callinvoker:
406 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
407 | React-Core:
408 | :path: "../node_modules/react-native/"
409 | React-CoreModules:
410 | :path: "../node_modules/react-native/React/CoreModules"
411 | React-cxxreact:
412 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
413 | React-jsi:
414 | :path: "../node_modules/react-native/ReactCommon/jsi"
415 | React-jsiexecutor:
416 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
417 | React-jsinspector:
418 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
419 | react-native-safe-area-context:
420 | :path: "../node_modules/react-native-safe-area-context"
421 | React-RCTActionSheet:
422 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
423 | React-RCTAnimation:
424 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
425 | React-RCTBlob:
426 | :path: "../node_modules/react-native/Libraries/Blob"
427 | React-RCTImage:
428 | :path: "../node_modules/react-native/Libraries/Image"
429 | React-RCTLinking:
430 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
431 | React-RCTNetwork:
432 | :path: "../node_modules/react-native/Libraries/Network"
433 | React-RCTSettings:
434 | :path: "../node_modules/react-native/Libraries/Settings"
435 | React-RCTText:
436 | :path: "../node_modules/react-native/Libraries/Text"
437 | React-RCTVibration:
438 | :path: "../node_modules/react-native/Libraries/Vibration"
439 | ReactCommon:
440 | :path: "../node_modules/react-native/ReactCommon"
441 | RNCAsyncStorage:
442 | :path: "../node_modules/@react-native-community/async-storage"
443 | RNCMaskedView:
444 | :path: "../node_modules/@react-native-community/masked-view"
445 | RNGestureHandler:
446 | :path: "../node_modules/react-native-gesture-handler"
447 | RNReanimated:
448 | :path: "../node_modules/react-native-reanimated"
449 | RNScreens:
450 | :path: "../node_modules/react-native-screens"
451 | RNVectorIcons:
452 | :path: "../node_modules/react-native-vector-icons"
453 | Yoga:
454 | :path: "../node_modules/react-native/ReactCommon/yoga"
455 |
456 | SPEC CHECKSUMS:
457 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
458 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
459 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
460 | DoubleConversion: cde416483dac037923206447da6e1454df403714
461 | FBLazyVector: 878b59e31113e289e275165efbe4b54fa614d43d
462 | FBReactNativeSpec: 7da9338acfb98d4ef9e5536805a0704572d33c2f
463 | Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
464 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
465 | Flipper-Folly: e4493b013c02d9347d5e0cb4d128680239f6c78a
466 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
467 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
468 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
469 | FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
470 | Folly: b73c3869541e86821df3c387eb0af5f65addfab4
471 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
472 | OpenSSL-Universal: ff34003318d5e1163e9529b08470708e389ffcdd
473 | RCTRequired: 48884c74035a0b5b76dbb7a998bd93bcfc5f2047
474 | RCTTypeSafety: edf4b618033c2f1c5b7bc3d90d8e085ed95ba2ab
475 | React: f36e90f3ceb976546e97df3403e37d226f79d0e3
476 | React-callinvoker: 18874f621eb96625df7a24a7dc8d6e07391affcd
477 | React-Core: ac3d816b8e3493970153f4aaf0cff18af0bb95e6
478 | React-CoreModules: 4016d3a4e518bcfc4f5a51252b5a05692ca6f0e1
479 | React-cxxreact: ffc9129013b87cb36cf3f30a86695a3c397b0f99
480 | React-jsi: df07aa95b39c5be3e41199921509bfa929ed2b9d
481 | React-jsiexecutor: b56c03e61c0dd5f5801255f2160a815f4a53d451
482 | React-jsinspector: 8e68ffbfe23880d3ee9bafa8be2777f60b25cbe2
483 | react-native-safe-area-context: 79fea126c6830c85f65947c223a5e3058a666937
484 | React-RCTActionSheet: 53ea72699698b0b47a6421cb1c8b4ab215a774aa
485 | React-RCTAnimation: 1befece0b5183c22ae01b966f5583f42e69a83c2
486 | React-RCTBlob: 0b284339cbe4b15705a05e2313a51c6d8b51fa40
487 | React-RCTImage: d1756599ebd4dc2cb19d1682fe67c6b976658387
488 | React-RCTLinking: 9af0a51c6d6a4dd1674daadafffc6d03033a6d18
489 | React-RCTNetwork: 332c83929cc5eae0b3bbca4add1d668e1fc18bda
490 | React-RCTSettings: d6953772cfd55f2c68ad72b7ef29efc7ec49f773
491 | React-RCTText: 65a6de06a7389098ce24340d1d3556015c38f746
492 | React-RCTVibration: 8e9fb25724a0805107fc1acc9075e26f814df454
493 | ReactCommon: 4167844018c9ed375cc01a843e9ee564399e53c3
494 | RNCAsyncStorage: b03032fdbdb725bea0bd9e5ec5a7272865ae7398
495 | RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
496 | RNGestureHandler: 7a5833d0f788dbd107fbb913e09aa0c1ff333c39
497 | RNReanimated: dd8c286ab5dd4ba36d3a7fef8bff7e08711b5476
498 | RNScreens: 4b488fdf9537bbce829e2910c8cce1d17f6d9be8
499 | RNVectorIcons: bc69e6a278b14842063605de32bec61f0b251a59
500 | Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
501 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
502 |
503 | PODFILE CHECKSUM: f4514576cf39c1ddaf2dcd737a43d8c9b385363b
504 |
505 | COCOAPODS: 1.8.3
506 |
--------------------------------------------------------------------------------
/ios/TestedApp.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* TestedAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* TestedAppTests.m */; };
11 | 10F7846732E96D67FD6F41D8 /* libPods-TestedApp-TestedAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DE133D882CD38BF3FF2AD8AE /* libPods-TestedApp-TestedAppTests.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 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18 | 2DCD954D1E0B4F2C00145EB5 /* TestedAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* TestedAppTests.m */; };
19 | 3E130F1C7C256C38552591B3 /* libPods-TestedApp-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 64278EBAEE72BF3282BDE337 /* libPods-TestedApp-tvOS.a */; };
20 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
21 | B1F6AC6102334E632FFCA236 /* libPods-TestedApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C1D4CDC093302DDCB7F2758 /* libPods-TestedApp.a */; };
22 | E0C20F1107BE3DE0555BC991 /* libPods-TestedApp-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 72196103F7D3F844EF30EAD6 /* libPods-TestedApp-tvOSTests.a */; };
23 | /* End PBXBuildFile section */
24 |
25 | /* Begin PBXContainerItemProxy section */
26 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
27 | isa = PBXContainerItemProxy;
28 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
29 | proxyType = 1;
30 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
31 | remoteInfo = TestedApp;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "TestedApp-tvOS";
39 | };
40 | /* End PBXContainerItemProxy section */
41 |
42 | /* Begin PBXFileReference section */
43 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
44 | 00E356EE1AD99517003FC87E /* TestedAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestedAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* TestedAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestedAppTests.m; sourceTree = ""; };
47 | 04FE2687422D2B0C316D04B4 /* Pods-TestedApp-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-TestedApp-tvOSTests/Pods-TestedApp-tvOSTests.debug.xcconfig"; sourceTree = ""; };
48 | 1258CC2402636ABD3458B93D /* Pods-TestedApp-TestedAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-TestedAppTests.release.xcconfig"; path = "Target Support Files/Pods-TestedApp-TestedAppTests/Pods-TestedApp-TestedAppTests.release.xcconfig"; sourceTree = ""; };
49 | 13B07F961A680F5B00A75B9A /* TestedApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestedApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
50 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = TestedApp/AppDelegate.h; sourceTree = ""; };
51 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = TestedApp/AppDelegate.m; sourceTree = ""; };
52 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = TestedApp/Images.xcassets; sourceTree = ""; };
53 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = TestedApp/Info.plist; sourceTree = ""; };
54 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = TestedApp/main.m; sourceTree = ""; };
55 | 2D02E47B1E0B4A5D006451C7 /* TestedApp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "TestedApp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 2D02E4901E0B4A5D006451C7 /* TestedApp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "TestedApp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 4C1D4CDC093302DDCB7F2758 /* libPods-TestedApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TestedApp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
58 | 57D5735FE4074E71A0F33A13 /* Pods-TestedApp-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-TestedApp-tvOS/Pods-TestedApp-tvOS.debug.xcconfig"; sourceTree = ""; };
59 | 64278EBAEE72BF3282BDE337 /* libPods-TestedApp-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TestedApp-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 6557316BC0DFB5366EC6D6CF /* Pods-TestedApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp.release.xcconfig"; path = "Target Support Files/Pods-TestedApp/Pods-TestedApp.release.xcconfig"; sourceTree = ""; };
61 | 72196103F7D3F844EF30EAD6 /* libPods-TestedApp-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TestedApp-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
62 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = TestedApp/LaunchScreen.storyboard; sourceTree = ""; };
63 | 98D7529A3A4A4DE7CC5A0C29 /* Pods-TestedApp-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-TestedApp-tvOSTests/Pods-TestedApp-tvOSTests.release.xcconfig"; sourceTree = ""; };
64 | A1B0DAF2282CA53FC90134D2 /* Pods-TestedApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp.debug.xcconfig"; path = "Target Support Files/Pods-TestedApp/Pods-TestedApp.debug.xcconfig"; sourceTree = ""; };
65 | DE133D882CD38BF3FF2AD8AE /* libPods-TestedApp-TestedAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TestedApp-TestedAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
66 | E3D55A07A5D880DA9AE7C60C /* Pods-TestedApp-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-tvOS.release.xcconfig"; path = "Target Support Files/Pods-TestedApp-tvOS/Pods-TestedApp-tvOS.release.xcconfig"; sourceTree = ""; };
67 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
68 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
69 | F7686D94C9E0FD3239E8497E /* Pods-TestedApp-TestedAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TestedApp-TestedAppTests.debug.xcconfig"; path = "Target Support Files/Pods-TestedApp-TestedAppTests/Pods-TestedApp-TestedAppTests.debug.xcconfig"; sourceTree = ""; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | 10F7846732E96D67FD6F41D8 /* libPods-TestedApp-TestedAppTests.a in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | B1F6AC6102334E632FFCA236 /* libPods-TestedApp.a in Frameworks */,
86 | );
87 | runOnlyForDeploymentPostprocessing = 0;
88 | };
89 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
90 | isa = PBXFrameworksBuildPhase;
91 | buildActionMask = 2147483647;
92 | files = (
93 | 3E130F1C7C256C38552591B3 /* libPods-TestedApp-tvOS.a in Frameworks */,
94 | );
95 | runOnlyForDeploymentPostprocessing = 0;
96 | };
97 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
98 | isa = PBXFrameworksBuildPhase;
99 | buildActionMask = 2147483647;
100 | files = (
101 | E0C20F1107BE3DE0555BC991 /* libPods-TestedApp-tvOSTests.a in Frameworks */,
102 | );
103 | runOnlyForDeploymentPostprocessing = 0;
104 | };
105 | /* End PBXFrameworksBuildPhase section */
106 |
107 | /* Begin PBXGroup section */
108 | 00E356EF1AD99517003FC87E /* TestedAppTests */ = {
109 | isa = PBXGroup;
110 | children = (
111 | 00E356F21AD99517003FC87E /* TestedAppTests.m */,
112 | 00E356F01AD99517003FC87E /* Supporting Files */,
113 | );
114 | path = TestedAppTests;
115 | sourceTree = "";
116 | };
117 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 00E356F11AD99517003FC87E /* Info.plist */,
121 | );
122 | name = "Supporting Files";
123 | sourceTree = "";
124 | };
125 | 13B07FAE1A68108700A75B9A /* TestedApp */ = {
126 | isa = PBXGroup;
127 | children = (
128 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
129 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
130 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
131 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
132 | 13B07FB61A68108700A75B9A /* Info.plist */,
133 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
134 | 13B07FB71A68108700A75B9A /* main.m */,
135 | );
136 | name = TestedApp;
137 | sourceTree = "";
138 | };
139 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
140 | isa = PBXGroup;
141 | children = (
142 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
143 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
144 | 4C1D4CDC093302DDCB7F2758 /* libPods-TestedApp.a */,
145 | DE133D882CD38BF3FF2AD8AE /* libPods-TestedApp-TestedAppTests.a */,
146 | 64278EBAEE72BF3282BDE337 /* libPods-TestedApp-tvOS.a */,
147 | 72196103F7D3F844EF30EAD6 /* libPods-TestedApp-tvOSTests.a */,
148 | );
149 | name = Frameworks;
150 | sourceTree = "";
151 | };
152 | 57BD02DB5664AAF82A0336CA /* Pods */ = {
153 | isa = PBXGroup;
154 | children = (
155 | A1B0DAF2282CA53FC90134D2 /* Pods-TestedApp.debug.xcconfig */,
156 | 6557316BC0DFB5366EC6D6CF /* Pods-TestedApp.release.xcconfig */,
157 | F7686D94C9E0FD3239E8497E /* Pods-TestedApp-TestedAppTests.debug.xcconfig */,
158 | 1258CC2402636ABD3458B93D /* Pods-TestedApp-TestedAppTests.release.xcconfig */,
159 | 57D5735FE4074E71A0F33A13 /* Pods-TestedApp-tvOS.debug.xcconfig */,
160 | E3D55A07A5D880DA9AE7C60C /* Pods-TestedApp-tvOS.release.xcconfig */,
161 | 04FE2687422D2B0C316D04B4 /* Pods-TestedApp-tvOSTests.debug.xcconfig */,
162 | 98D7529A3A4A4DE7CC5A0C29 /* Pods-TestedApp-tvOSTests.release.xcconfig */,
163 | );
164 | name = Pods;
165 | path = Pods;
166 | sourceTree = "";
167 | };
168 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
169 | isa = PBXGroup;
170 | children = (
171 | );
172 | name = Libraries;
173 | sourceTree = "";
174 | };
175 | 83CBB9F61A601CBA00E9B192 = {
176 | isa = PBXGroup;
177 | children = (
178 | 13B07FAE1A68108700A75B9A /* TestedApp */,
179 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
180 | 00E356EF1AD99517003FC87E /* TestedAppTests */,
181 | 83CBBA001A601CBA00E9B192 /* Products */,
182 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
183 | 57BD02DB5664AAF82A0336CA /* Pods */,
184 | );
185 | indentWidth = 2;
186 | sourceTree = "";
187 | tabWidth = 2;
188 | usesTabs = 0;
189 | };
190 | 83CBBA001A601CBA00E9B192 /* Products */ = {
191 | isa = PBXGroup;
192 | children = (
193 | 13B07F961A680F5B00A75B9A /* TestedApp.app */,
194 | 00E356EE1AD99517003FC87E /* TestedAppTests.xctest */,
195 | 2D02E47B1E0B4A5D006451C7 /* TestedApp-tvOS.app */,
196 | 2D02E4901E0B4A5D006451C7 /* TestedApp-tvOSTests.xctest */,
197 | );
198 | name = Products;
199 | sourceTree = "";
200 | };
201 | /* End PBXGroup section */
202 |
203 | /* Begin PBXNativeTarget section */
204 | 00E356ED1AD99517003FC87E /* TestedAppTests */ = {
205 | isa = PBXNativeTarget;
206 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "TestedAppTests" */;
207 | buildPhases = (
208 | 1210779EE9754D77197631A2 /* [CP] Check Pods Manifest.lock */,
209 | 00E356EA1AD99517003FC87E /* Sources */,
210 | 00E356EB1AD99517003FC87E /* Frameworks */,
211 | 00E356EC1AD99517003FC87E /* Resources */,
212 | F80A4221CD01D2291C657516 /* [CP] Copy Pods Resources */,
213 | );
214 | buildRules = (
215 | );
216 | dependencies = (
217 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
218 | );
219 | name = TestedAppTests;
220 | productName = TestedAppTests;
221 | productReference = 00E356EE1AD99517003FC87E /* TestedAppTests.xctest */;
222 | productType = "com.apple.product-type.bundle.unit-test";
223 | };
224 | 13B07F861A680F5B00A75B9A /* TestedApp */ = {
225 | isa = PBXNativeTarget;
226 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "TestedApp" */;
227 | buildPhases = (
228 | 6EA742D1CDFF6F47B4964832 /* [CP] Check Pods Manifest.lock */,
229 | FD10A7F022414F080027D42C /* Start Packager */,
230 | 13B07F871A680F5B00A75B9A /* Sources */,
231 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
232 | 13B07F8E1A680F5B00A75B9A /* Resources */,
233 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
234 | 83CBB7D8819E1D2A17202931 /* [CP] Copy Pods Resources */,
235 | );
236 | buildRules = (
237 | );
238 | dependencies = (
239 | );
240 | name = TestedApp;
241 | productName = TestedApp;
242 | productReference = 13B07F961A680F5B00A75B9A /* TestedApp.app */;
243 | productType = "com.apple.product-type.application";
244 | };
245 | 2D02E47A1E0B4A5D006451C7 /* TestedApp-tvOS */ = {
246 | isa = PBXNativeTarget;
247 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TestedApp-tvOS" */;
248 | buildPhases = (
249 | C0CDBEE401C717B4201D9FF8 /* [CP] Check Pods Manifest.lock */,
250 | FD10A7F122414F3F0027D42C /* Start Packager */,
251 | 2D02E4771E0B4A5D006451C7 /* Sources */,
252 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
253 | 2D02E4791E0B4A5D006451C7 /* Resources */,
254 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
255 | );
256 | buildRules = (
257 | );
258 | dependencies = (
259 | );
260 | name = "TestedApp-tvOS";
261 | productName = "TestedApp-tvOS";
262 | productReference = 2D02E47B1E0B4A5D006451C7 /* TestedApp-tvOS.app */;
263 | productType = "com.apple.product-type.application";
264 | };
265 | 2D02E48F1E0B4A5D006451C7 /* TestedApp-tvOSTests */ = {
266 | isa = PBXNativeTarget;
267 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TestedApp-tvOSTests" */;
268 | buildPhases = (
269 | 6ED42CA7DD70A7EC81A4F236 /* [CP] Check Pods Manifest.lock */,
270 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
271 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
272 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
273 | );
274 | buildRules = (
275 | );
276 | dependencies = (
277 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
278 | );
279 | name = "TestedApp-tvOSTests";
280 | productName = "TestedApp-tvOSTests";
281 | productReference = 2D02E4901E0B4A5D006451C7 /* TestedApp-tvOSTests.xctest */;
282 | productType = "com.apple.product-type.bundle.unit-test";
283 | };
284 | /* End PBXNativeTarget section */
285 |
286 | /* Begin PBXProject section */
287 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
288 | isa = PBXProject;
289 | attributes = {
290 | LastUpgradeCheck = 1130;
291 | TargetAttributes = {
292 | 00E356ED1AD99517003FC87E = {
293 | CreatedOnToolsVersion = 6.2;
294 | TestTargetID = 13B07F861A680F5B00A75B9A;
295 | };
296 | 13B07F861A680F5B00A75B9A = {
297 | LastSwiftMigration = 1120;
298 | };
299 | 2D02E47A1E0B4A5D006451C7 = {
300 | CreatedOnToolsVersion = 8.2.1;
301 | ProvisioningStyle = Automatic;
302 | };
303 | 2D02E48F1E0B4A5D006451C7 = {
304 | CreatedOnToolsVersion = 8.2.1;
305 | ProvisioningStyle = Automatic;
306 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
307 | };
308 | };
309 | };
310 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "TestedApp" */;
311 | compatibilityVersion = "Xcode 3.2";
312 | developmentRegion = en;
313 | hasScannedForEncodings = 0;
314 | knownRegions = (
315 | en,
316 | Base,
317 | );
318 | mainGroup = 83CBB9F61A601CBA00E9B192;
319 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
320 | projectDirPath = "";
321 | projectRoot = "";
322 | targets = (
323 | 13B07F861A680F5B00A75B9A /* TestedApp */,
324 | 00E356ED1AD99517003FC87E /* TestedAppTests */,
325 | 2D02E47A1E0B4A5D006451C7 /* TestedApp-tvOS */,
326 | 2D02E48F1E0B4A5D006451C7 /* TestedApp-tvOSTests */,
327 | );
328 | };
329 | /* End PBXProject section */
330 |
331 | /* Begin PBXResourcesBuildPhase section */
332 | 00E356EC1AD99517003FC87E /* Resources */ = {
333 | isa = PBXResourcesBuildPhase;
334 | buildActionMask = 2147483647;
335 | files = (
336 | );
337 | runOnlyForDeploymentPostprocessing = 0;
338 | };
339 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
340 | isa = PBXResourcesBuildPhase;
341 | buildActionMask = 2147483647;
342 | files = (
343 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
344 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
345 | );
346 | runOnlyForDeploymentPostprocessing = 0;
347 | };
348 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
349 | isa = PBXResourcesBuildPhase;
350 | buildActionMask = 2147483647;
351 | files = (
352 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
353 | );
354 | runOnlyForDeploymentPostprocessing = 0;
355 | };
356 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
357 | isa = PBXResourcesBuildPhase;
358 | buildActionMask = 2147483647;
359 | files = (
360 | );
361 | runOnlyForDeploymentPostprocessing = 0;
362 | };
363 | /* End PBXResourcesBuildPhase section */
364 |
365 | /* Begin PBXShellScriptBuildPhase section */
366 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
367 | isa = PBXShellScriptBuildPhase;
368 | buildActionMask = 2147483647;
369 | files = (
370 | );
371 | inputPaths = (
372 | );
373 | name = "Bundle React Native code and images";
374 | outputPaths = (
375 | );
376 | runOnlyForDeploymentPostprocessing = 0;
377 | shellPath = /bin/sh;
378 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
379 | };
380 | 1210779EE9754D77197631A2 /* [CP] Check Pods Manifest.lock */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputFileListPaths = (
386 | );
387 | inputPaths = (
388 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
389 | "${PODS_ROOT}/Manifest.lock",
390 | );
391 | name = "[CP] Check Pods Manifest.lock";
392 | outputFileListPaths = (
393 | );
394 | outputPaths = (
395 | "$(DERIVED_FILE_DIR)/Pods-TestedApp-TestedAppTests-checkManifestLockResult.txt",
396 | );
397 | runOnlyForDeploymentPostprocessing = 0;
398 | shellPath = /bin/sh;
399 | 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";
400 | showEnvVarsInLog = 0;
401 | };
402 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
403 | isa = PBXShellScriptBuildPhase;
404 | buildActionMask = 2147483647;
405 | files = (
406 | );
407 | inputPaths = (
408 | );
409 | name = "Bundle React Native Code And Images";
410 | outputPaths = (
411 | );
412 | runOnlyForDeploymentPostprocessing = 0;
413 | shellPath = /bin/sh;
414 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
415 | };
416 | 6EA742D1CDFF6F47B4964832 /* [CP] Check Pods Manifest.lock */ = {
417 | isa = PBXShellScriptBuildPhase;
418 | buildActionMask = 2147483647;
419 | files = (
420 | );
421 | inputFileListPaths = (
422 | );
423 | inputPaths = (
424 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
425 | "${PODS_ROOT}/Manifest.lock",
426 | );
427 | name = "[CP] Check Pods Manifest.lock";
428 | outputFileListPaths = (
429 | );
430 | outputPaths = (
431 | "$(DERIVED_FILE_DIR)/Pods-TestedApp-checkManifestLockResult.txt",
432 | );
433 | runOnlyForDeploymentPostprocessing = 0;
434 | shellPath = /bin/sh;
435 | 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";
436 | showEnvVarsInLog = 0;
437 | };
438 | 6ED42CA7DD70A7EC81A4F236 /* [CP] Check Pods Manifest.lock */ = {
439 | isa = PBXShellScriptBuildPhase;
440 | buildActionMask = 2147483647;
441 | files = (
442 | );
443 | inputFileListPaths = (
444 | );
445 | inputPaths = (
446 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
447 | "${PODS_ROOT}/Manifest.lock",
448 | );
449 | name = "[CP] Check Pods Manifest.lock";
450 | outputFileListPaths = (
451 | );
452 | outputPaths = (
453 | "$(DERIVED_FILE_DIR)/Pods-TestedApp-tvOSTests-checkManifestLockResult.txt",
454 | );
455 | runOnlyForDeploymentPostprocessing = 0;
456 | shellPath = /bin/sh;
457 | 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";
458 | showEnvVarsInLog = 0;
459 | };
460 | 83CBB7D8819E1D2A17202931 /* [CP] Copy Pods Resources */ = {
461 | isa = PBXShellScriptBuildPhase;
462 | buildActionMask = 2147483647;
463 | files = (
464 | );
465 | inputPaths = (
466 | "${PODS_ROOT}/Target Support Files/Pods-TestedApp/Pods-TestedApp-resources.sh",
467 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
468 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
469 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
470 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
471 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
472 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
473 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
474 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
475 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
476 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
477 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
478 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
479 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
480 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
481 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
482 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
483 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
484 | );
485 | name = "[CP] Copy Pods Resources";
486 | outputPaths = (
487 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
488 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
489 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
490 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
491 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
492 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
493 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
494 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
495 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
496 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
497 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
498 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
499 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
500 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
501 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
502 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
503 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
504 | );
505 | runOnlyForDeploymentPostprocessing = 0;
506 | shellPath = /bin/sh;
507 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TestedApp/Pods-TestedApp-resources.sh\"\n";
508 | showEnvVarsInLog = 0;
509 | };
510 | C0CDBEE401C717B4201D9FF8 /* [CP] Check Pods Manifest.lock */ = {
511 | isa = PBXShellScriptBuildPhase;
512 | buildActionMask = 2147483647;
513 | files = (
514 | );
515 | inputFileListPaths = (
516 | );
517 | inputPaths = (
518 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
519 | "${PODS_ROOT}/Manifest.lock",
520 | );
521 | name = "[CP] Check Pods Manifest.lock";
522 | outputFileListPaths = (
523 | );
524 | outputPaths = (
525 | "$(DERIVED_FILE_DIR)/Pods-TestedApp-tvOS-checkManifestLockResult.txt",
526 | );
527 | runOnlyForDeploymentPostprocessing = 0;
528 | shellPath = /bin/sh;
529 | 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";
530 | showEnvVarsInLog = 0;
531 | };
532 | F80A4221CD01D2291C657516 /* [CP] Copy Pods Resources */ = {
533 | isa = PBXShellScriptBuildPhase;
534 | buildActionMask = 2147483647;
535 | files = (
536 | );
537 | inputPaths = (
538 | "${PODS_ROOT}/Target Support Files/Pods-TestedApp-TestedAppTests/Pods-TestedApp-TestedAppTests-resources.sh",
539 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
540 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
541 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
542 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
543 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
544 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
545 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
546 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
547 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
548 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
549 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
550 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
551 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
552 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
553 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
554 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
555 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
556 | );
557 | name = "[CP] Copy Pods Resources";
558 | outputPaths = (
559 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
560 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
561 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
562 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
563 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
564 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
565 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
566 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
567 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
568 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
569 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
570 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
571 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
572 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
573 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
574 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
575 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
576 | );
577 | runOnlyForDeploymentPostprocessing = 0;
578 | shellPath = /bin/sh;
579 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TestedApp-TestedAppTests/Pods-TestedApp-TestedAppTests-resources.sh\"\n";
580 | showEnvVarsInLog = 0;
581 | };
582 | FD10A7F022414F080027D42C /* Start Packager */ = {
583 | isa = PBXShellScriptBuildPhase;
584 | buildActionMask = 2147483647;
585 | files = (
586 | );
587 | inputFileListPaths = (
588 | );
589 | inputPaths = (
590 | );
591 | name = "Start Packager";
592 | outputFileListPaths = (
593 | );
594 | outputPaths = (
595 | );
596 | runOnlyForDeploymentPostprocessing = 0;
597 | shellPath = /bin/sh;
598 | 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";
599 | showEnvVarsInLog = 0;
600 | };
601 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
602 | isa = PBXShellScriptBuildPhase;
603 | buildActionMask = 2147483647;
604 | files = (
605 | );
606 | inputFileListPaths = (
607 | );
608 | inputPaths = (
609 | );
610 | name = "Start Packager";
611 | outputFileListPaths = (
612 | );
613 | outputPaths = (
614 | );
615 | runOnlyForDeploymentPostprocessing = 0;
616 | shellPath = /bin/sh;
617 | 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";
618 | showEnvVarsInLog = 0;
619 | };
620 | /* End PBXShellScriptBuildPhase section */
621 |
622 | /* Begin PBXSourcesBuildPhase section */
623 | 00E356EA1AD99517003FC87E /* Sources */ = {
624 | isa = PBXSourcesBuildPhase;
625 | buildActionMask = 2147483647;
626 | files = (
627 | 00E356F31AD99517003FC87E /* TestedAppTests.m in Sources */,
628 | );
629 | runOnlyForDeploymentPostprocessing = 0;
630 | };
631 | 13B07F871A680F5B00A75B9A /* Sources */ = {
632 | isa = PBXSourcesBuildPhase;
633 | buildActionMask = 2147483647;
634 | files = (
635 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
636 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
637 | );
638 | runOnlyForDeploymentPostprocessing = 0;
639 | };
640 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
641 | isa = PBXSourcesBuildPhase;
642 | buildActionMask = 2147483647;
643 | files = (
644 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
645 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
646 | );
647 | runOnlyForDeploymentPostprocessing = 0;
648 | };
649 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
650 | isa = PBXSourcesBuildPhase;
651 | buildActionMask = 2147483647;
652 | files = (
653 | 2DCD954D1E0B4F2C00145EB5 /* TestedAppTests.m in Sources */,
654 | );
655 | runOnlyForDeploymentPostprocessing = 0;
656 | };
657 | /* End PBXSourcesBuildPhase section */
658 |
659 | /* Begin PBXTargetDependency section */
660 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
661 | isa = PBXTargetDependency;
662 | target = 13B07F861A680F5B00A75B9A /* TestedApp */;
663 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
664 | };
665 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
666 | isa = PBXTargetDependency;
667 | target = 2D02E47A1E0B4A5D006451C7 /* TestedApp-tvOS */;
668 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
669 | };
670 | /* End PBXTargetDependency section */
671 |
672 | /* Begin XCBuildConfiguration section */
673 | 00E356F61AD99517003FC87E /* Debug */ = {
674 | isa = XCBuildConfiguration;
675 | baseConfigurationReference = F7686D94C9E0FD3239E8497E /* Pods-TestedApp-TestedAppTests.debug.xcconfig */;
676 | buildSettings = {
677 | BUNDLE_LOADER = "$(TEST_HOST)";
678 | GCC_PREPROCESSOR_DEFINITIONS = (
679 | "DEBUG=1",
680 | "$(inherited)",
681 | );
682 | INFOPLIST_FILE = TestedAppTests/Info.plist;
683 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
684 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
685 | OTHER_LDFLAGS = (
686 | "-ObjC",
687 | "-lc++",
688 | "$(inherited)",
689 | );
690 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
691 | PRODUCT_NAME = "$(TARGET_NAME)";
692 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TestedApp.app/TestedApp";
693 | };
694 | name = Debug;
695 | };
696 | 00E356F71AD99517003FC87E /* Release */ = {
697 | isa = XCBuildConfiguration;
698 | baseConfigurationReference = 1258CC2402636ABD3458B93D /* Pods-TestedApp-TestedAppTests.release.xcconfig */;
699 | buildSettings = {
700 | BUNDLE_LOADER = "$(TEST_HOST)";
701 | COPY_PHASE_STRIP = NO;
702 | INFOPLIST_FILE = TestedAppTests/Info.plist;
703 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
704 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
705 | OTHER_LDFLAGS = (
706 | "-ObjC",
707 | "-lc++",
708 | "$(inherited)",
709 | );
710 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
711 | PRODUCT_NAME = "$(TARGET_NAME)";
712 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TestedApp.app/TestedApp";
713 | };
714 | name = Release;
715 | };
716 | 13B07F941A680F5B00A75B9A /* Debug */ = {
717 | isa = XCBuildConfiguration;
718 | baseConfigurationReference = A1B0DAF2282CA53FC90134D2 /* Pods-TestedApp.debug.xcconfig */;
719 | buildSettings = {
720 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
721 | CLANG_ENABLE_MODULES = YES;
722 | CURRENT_PROJECT_VERSION = 1;
723 | ENABLE_BITCODE = NO;
724 | INFOPLIST_FILE = TestedApp/Info.plist;
725 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
726 | OTHER_LDFLAGS = (
727 | "$(inherited)",
728 | "-ObjC",
729 | "-lc++",
730 | );
731 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
732 | PRODUCT_NAME = TestedApp;
733 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
734 | SWIFT_VERSION = 5.0;
735 | VERSIONING_SYSTEM = "apple-generic";
736 | };
737 | name = Debug;
738 | };
739 | 13B07F951A680F5B00A75B9A /* Release */ = {
740 | isa = XCBuildConfiguration;
741 | baseConfigurationReference = 6557316BC0DFB5366EC6D6CF /* Pods-TestedApp.release.xcconfig */;
742 | buildSettings = {
743 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
744 | CLANG_ENABLE_MODULES = YES;
745 | CURRENT_PROJECT_VERSION = 1;
746 | INFOPLIST_FILE = TestedApp/Info.plist;
747 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
748 | OTHER_LDFLAGS = (
749 | "$(inherited)",
750 | "-ObjC",
751 | "-lc++",
752 | );
753 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
754 | PRODUCT_NAME = TestedApp;
755 | SWIFT_VERSION = 5.0;
756 | VERSIONING_SYSTEM = "apple-generic";
757 | };
758 | name = Release;
759 | };
760 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
761 | isa = XCBuildConfiguration;
762 | baseConfigurationReference = 57D5735FE4074E71A0F33A13 /* Pods-TestedApp-tvOS.debug.xcconfig */;
763 | buildSettings = {
764 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
765 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
766 | CLANG_ANALYZER_NONNULL = YES;
767 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
768 | CLANG_WARN_INFINITE_RECURSION = YES;
769 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
770 | DEBUG_INFORMATION_FORMAT = dwarf;
771 | ENABLE_TESTABILITY = YES;
772 | GCC_NO_COMMON_BLOCKS = YES;
773 | INFOPLIST_FILE = "TestedApp-tvOS/Info.plist";
774 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
775 | OTHER_LDFLAGS = (
776 | "$(inherited)",
777 | "-ObjC",
778 | "-lc++",
779 | );
780 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.TestedApp-tvOS";
781 | PRODUCT_NAME = "$(TARGET_NAME)";
782 | SDKROOT = appletvos;
783 | TARGETED_DEVICE_FAMILY = 3;
784 | TVOS_DEPLOYMENT_TARGET = 10.0;
785 | };
786 | name = Debug;
787 | };
788 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
789 | isa = XCBuildConfiguration;
790 | baseConfigurationReference = E3D55A07A5D880DA9AE7C60C /* Pods-TestedApp-tvOS.release.xcconfig */;
791 | buildSettings = {
792 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
793 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
794 | CLANG_ANALYZER_NONNULL = YES;
795 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
796 | CLANG_WARN_INFINITE_RECURSION = YES;
797 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
798 | COPY_PHASE_STRIP = NO;
799 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
800 | GCC_NO_COMMON_BLOCKS = YES;
801 | INFOPLIST_FILE = "TestedApp-tvOS/Info.plist";
802 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
803 | OTHER_LDFLAGS = (
804 | "$(inherited)",
805 | "-ObjC",
806 | "-lc++",
807 | );
808 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.TestedApp-tvOS";
809 | PRODUCT_NAME = "$(TARGET_NAME)";
810 | SDKROOT = appletvos;
811 | TARGETED_DEVICE_FAMILY = 3;
812 | TVOS_DEPLOYMENT_TARGET = 10.0;
813 | };
814 | name = Release;
815 | };
816 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
817 | isa = XCBuildConfiguration;
818 | baseConfigurationReference = 04FE2687422D2B0C316D04B4 /* Pods-TestedApp-tvOSTests.debug.xcconfig */;
819 | buildSettings = {
820 | BUNDLE_LOADER = "$(TEST_HOST)";
821 | CLANG_ANALYZER_NONNULL = YES;
822 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
823 | CLANG_WARN_INFINITE_RECURSION = YES;
824 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
825 | DEBUG_INFORMATION_FORMAT = dwarf;
826 | ENABLE_TESTABILITY = YES;
827 | GCC_NO_COMMON_BLOCKS = YES;
828 | INFOPLIST_FILE = "TestedApp-tvOSTests/Info.plist";
829 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
830 | OTHER_LDFLAGS = (
831 | "$(inherited)",
832 | "-ObjC",
833 | "-lc++",
834 | );
835 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.TestedApp-tvOSTests";
836 | PRODUCT_NAME = "$(TARGET_NAME)";
837 | SDKROOT = appletvos;
838 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TestedApp-tvOS.app/TestedApp-tvOS";
839 | TVOS_DEPLOYMENT_TARGET = 10.1;
840 | };
841 | name = Debug;
842 | };
843 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
844 | isa = XCBuildConfiguration;
845 | baseConfigurationReference = 98D7529A3A4A4DE7CC5A0C29 /* Pods-TestedApp-tvOSTests.release.xcconfig */;
846 | buildSettings = {
847 | BUNDLE_LOADER = "$(TEST_HOST)";
848 | CLANG_ANALYZER_NONNULL = YES;
849 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
850 | CLANG_WARN_INFINITE_RECURSION = YES;
851 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
852 | COPY_PHASE_STRIP = NO;
853 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
854 | GCC_NO_COMMON_BLOCKS = YES;
855 | INFOPLIST_FILE = "TestedApp-tvOSTests/Info.plist";
856 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
857 | OTHER_LDFLAGS = (
858 | "$(inherited)",
859 | "-ObjC",
860 | "-lc++",
861 | );
862 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.TestedApp-tvOSTests";
863 | PRODUCT_NAME = "$(TARGET_NAME)";
864 | SDKROOT = appletvos;
865 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TestedApp-tvOS.app/TestedApp-tvOS";
866 | TVOS_DEPLOYMENT_TARGET = 10.1;
867 | };
868 | name = Release;
869 | };
870 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
871 | isa = XCBuildConfiguration;
872 | buildSettings = {
873 | ALWAYS_SEARCH_USER_PATHS = NO;
874 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
875 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
876 | CLANG_CXX_LIBRARY = "libc++";
877 | CLANG_ENABLE_MODULES = YES;
878 | CLANG_ENABLE_OBJC_ARC = YES;
879 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
880 | CLANG_WARN_BOOL_CONVERSION = YES;
881 | CLANG_WARN_COMMA = YES;
882 | CLANG_WARN_CONSTANT_CONVERSION = YES;
883 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
884 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
885 | CLANG_WARN_EMPTY_BODY = YES;
886 | CLANG_WARN_ENUM_CONVERSION = YES;
887 | CLANG_WARN_INFINITE_RECURSION = YES;
888 | CLANG_WARN_INT_CONVERSION = YES;
889 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
890 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
891 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
892 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
893 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
894 | CLANG_WARN_STRICT_PROTOTYPES = YES;
895 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
896 | CLANG_WARN_UNREACHABLE_CODE = YES;
897 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
898 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
899 | COPY_PHASE_STRIP = NO;
900 | ENABLE_STRICT_OBJC_MSGSEND = YES;
901 | ENABLE_TESTABILITY = YES;
902 | GCC_C_LANGUAGE_STANDARD = gnu99;
903 | GCC_DYNAMIC_NO_PIC = NO;
904 | GCC_NO_COMMON_BLOCKS = YES;
905 | GCC_OPTIMIZATION_LEVEL = 0;
906 | GCC_PREPROCESSOR_DEFINITIONS = (
907 | "DEBUG=1",
908 | "$(inherited)",
909 | );
910 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
911 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
912 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
913 | GCC_WARN_UNDECLARED_SELECTOR = YES;
914 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
915 | GCC_WARN_UNUSED_FUNCTION = YES;
916 | GCC_WARN_UNUSED_VARIABLE = YES;
917 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
918 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
919 | LIBRARY_SEARCH_PATHS = (
920 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
921 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
922 | "\"$(inherited)\"",
923 | );
924 | MTL_ENABLE_DEBUG_INFO = YES;
925 | ONLY_ACTIVE_ARCH = YES;
926 | SDKROOT = iphoneos;
927 | };
928 | name = Debug;
929 | };
930 | 83CBBA211A601CBA00E9B192 /* Release */ = {
931 | isa = XCBuildConfiguration;
932 | buildSettings = {
933 | ALWAYS_SEARCH_USER_PATHS = NO;
934 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
935 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
936 | CLANG_CXX_LIBRARY = "libc++";
937 | CLANG_ENABLE_MODULES = YES;
938 | CLANG_ENABLE_OBJC_ARC = YES;
939 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
940 | CLANG_WARN_BOOL_CONVERSION = YES;
941 | CLANG_WARN_COMMA = YES;
942 | CLANG_WARN_CONSTANT_CONVERSION = YES;
943 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
944 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
945 | CLANG_WARN_EMPTY_BODY = YES;
946 | CLANG_WARN_ENUM_CONVERSION = YES;
947 | CLANG_WARN_INFINITE_RECURSION = YES;
948 | CLANG_WARN_INT_CONVERSION = YES;
949 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
950 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
951 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
952 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
953 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
954 | CLANG_WARN_STRICT_PROTOTYPES = YES;
955 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
956 | CLANG_WARN_UNREACHABLE_CODE = YES;
957 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
958 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
959 | COPY_PHASE_STRIP = YES;
960 | ENABLE_NS_ASSERTIONS = NO;
961 | ENABLE_STRICT_OBJC_MSGSEND = YES;
962 | GCC_C_LANGUAGE_STANDARD = gnu99;
963 | GCC_NO_COMMON_BLOCKS = YES;
964 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
965 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
966 | GCC_WARN_UNDECLARED_SELECTOR = YES;
967 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
968 | GCC_WARN_UNUSED_FUNCTION = YES;
969 | GCC_WARN_UNUSED_VARIABLE = YES;
970 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
971 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
972 | LIBRARY_SEARCH_PATHS = (
973 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
974 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
975 | "\"$(inherited)\"",
976 | );
977 | MTL_ENABLE_DEBUG_INFO = NO;
978 | SDKROOT = iphoneos;
979 | VALIDATE_PRODUCT = YES;
980 | };
981 | name = Release;
982 | };
983 | /* End XCBuildConfiguration section */
984 |
985 | /* Begin XCConfigurationList section */
986 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "TestedAppTests" */ = {
987 | isa = XCConfigurationList;
988 | buildConfigurations = (
989 | 00E356F61AD99517003FC87E /* Debug */,
990 | 00E356F71AD99517003FC87E /* Release */,
991 | );
992 | defaultConfigurationIsVisible = 0;
993 | defaultConfigurationName = Release;
994 | };
995 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "TestedApp" */ = {
996 | isa = XCConfigurationList;
997 | buildConfigurations = (
998 | 13B07F941A680F5B00A75B9A /* Debug */,
999 | 13B07F951A680F5B00A75B9A /* Release */,
1000 | );
1001 | defaultConfigurationIsVisible = 0;
1002 | defaultConfigurationName = Release;
1003 | };
1004 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TestedApp-tvOS" */ = {
1005 | isa = XCConfigurationList;
1006 | buildConfigurations = (
1007 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1008 | 2D02E4981E0B4A5E006451C7 /* Release */,
1009 | );
1010 | defaultConfigurationIsVisible = 0;
1011 | defaultConfigurationName = Release;
1012 | };
1013 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TestedApp-tvOSTests" */ = {
1014 | isa = XCConfigurationList;
1015 | buildConfigurations = (
1016 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1017 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1018 | );
1019 | defaultConfigurationIsVisible = 0;
1020 | defaultConfigurationName = Release;
1021 | };
1022 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "TestedApp" */ = {
1023 | isa = XCConfigurationList;
1024 | buildConfigurations = (
1025 | 83CBBA201A601CBA00E9B192 /* Debug */,
1026 | 83CBBA211A601CBA00E9B192 /* Release */,
1027 | );
1028 | defaultConfigurationIsVisible = 0;
1029 | defaultConfigurationName = Release;
1030 | };
1031 | /* End XCConfigurationList section */
1032 | };
1033 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1034 | }
1035 |
--------------------------------------------------------------------------------