packages = new PackageList(this).getPackages();
30 | // Packages that cannot be autolinked yet can be added manually here, for example:
31 | // packages.add(new MyReactNativePackage());
32 | return packages;
33 | }
34 |
35 | @Override
36 | protected String getJSMainModuleName() {
37 | return "index";
38 | }
39 |
40 | @Override
41 | protected JSIModulePackage getJSIModulePackage() {
42 | return new ReanimatedJSIModulePackage(); // <- add
43 | }
44 | };
45 |
46 | @Override
47 | public ReactNativeHost getReactNativeHost() {
48 | return mReactNativeHost;
49 | }
50 |
51 | @Override
52 | public void onCreate() {
53 | super.onCreate();
54 | SoLoader.init(this, /* native exopackage */ false);
55 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
56 | }
57 |
58 | /**
59 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
60 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
61 | *
62 | * @param context
63 | * @param reactInstanceManager
64 | */
65 | private static void initializeFlipper(
66 | Context context, ReactInstanceManager reactInstanceManager) {
67 | if (BuildConfig.DEBUG) {
68 | try {
69 | /*
70 | We use reflection here to pick up the class that initializes Flipper,
71 | since Flipper library is not available in release mode
72 | */
73 | Class> aClass = Class.forName("com.reactnavigationtvdemo.ReactNativeFlipper");
74 | aClass
75 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
76 | .invoke(null, context, reactInstanceManager);
77 | } catch (ClassNotFoundException e) {
78 | e.printStackTrace();
79 | } catch (NoSuchMethodException e) {
80 | e.printStackTrace();
81 | } catch (IllegalAccessException e) {
82 | e.printStackTrace();
83 | } catch (InvocationTargetException e) {
84 | e.printStackTrace();
85 | }
86 | }
87 | }
88 | }
89 |
--------------------------------------------------------------------------------
/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 Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
34 |
35 | @rem Find java.exe
36 | if defined JAVA_HOME goto findJavaFromJavaHome
37 |
38 | set JAVA_EXE=java.exe
39 | %JAVA_EXE% -version >NUL 2>&1
40 | if "%ERRORLEVEL%" == "0" goto init
41 |
42 | echo.
43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
44 | echo.
45 | echo Please set the JAVA_HOME variable in your environment to match the
46 | echo location of your Java installation.
47 |
48 | goto fail
49 |
50 | :findJavaFromJavaHome
51 | set JAVA_HOME=%JAVA_HOME:"=%
52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
53 |
54 | if exist "%JAVA_EXE%" goto init
55 |
56 | echo.
57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
58 | echo.
59 | echo Please set the JAVA_HOME variable in your environment to match the
60 | echo location of your Java installation.
61 |
62 | goto fail
63 |
64 | :init
65 | @rem Get command-line arguments, handling Windows variants
66 |
67 | if not "%OS%" == "Windows_NT" goto win9xME_args
68 |
69 | :win9xME_args
70 | @rem Slurp the command line arguments.
71 | set CMD_LINE_ARGS=
72 | set _SKIP=2
73 |
74 | :win9xME_args_slurp
75 | if "x%~1" == "x" goto execute
76 |
77 | set CMD_LINE_ARGS=%*
78 |
79 | :execute
80 | @rem Setup the command line
81 |
82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
83 |
84 | @rem Execute Gradle
85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
86 |
87 | :end
88 | @rem End local scope for the variables with windows NT shell
89 | if "%ERRORLEVEL%"=="0" goto mainEnd
90 |
91 | :fail
92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
93 | rem the _cmd.exe /c_ return code!
94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
95 | exit /b 1
96 |
97 | :mainEnd
98 | if "%OS%"=="Windows_NT" endlocal
99 |
100 | :omega
101 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/reactnavigationtvdemo/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.reactnavigationtvdemo;
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/ReactNavigationTVDemo.xcodeproj/xcshareddata/xcschemes/ReactNavigationTVDemo.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/ReactNavigationTVDemo/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/ios/ReactNavigationTVDemo.xcodeproj/xcshareddata/xcschemes/ReactNavigationTVDemo-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 |
--------------------------------------------------------------------------------
/patches/react-native-screens+3.4.0.patch:
--------------------------------------------------------------------------------
1 | diff --git a/node_modules/react-native-screens/ios/RNSScreenStack.m b/node_modules/react-native-screens/ios/RNSScreenStack.m
2 | index 7b76e12..46a9093 100644
3 | --- a/node_modules/react-native-screens/ios/RNSScreenStack.m
4 | +++ b/node_modules/react-native-screens/ios/RNSScreenStack.m
5 | @@ -45,11 +45,13 @@
6 |
7 | @end
8 |
9 | +#if !TARGET_OS_TV
10 | @interface RNSGestureRecognizer: UIScreenEdgePanGestureRecognizer
11 | @end
12 |
13 | @implementation RNSGestureRecognizer
14 | @end
15 | +#endif
16 |
17 | @implementation RNSScreenStackView {
18 | UINavigationController *_controller;
19 | @@ -527,6 +529,7 @@
20 | return NO;
21 | }
22 |
23 | +#if !TARGET_OS_TV
24 | if ([gestureRecognizer isKindOfClass:[RNSGestureRecognizer class]]) {
25 | // if we do not set any explicit `semanticContentAttribute`, it is `UISemanticContentAttributeUnspecified` instead of `UISemanticContentAttributeForceLeftToRight`, so we just check if it is RTL or not
26 | BOOL isCorrectEdge = (_controller.view.semanticContentAttribute == UISemanticContentAttributeForceRightToLeft && ((RNSGestureRecognizer *)gestureRecognizer).edges == UIRectEdgeRight) ||
27 | @@ -535,13 +538,16 @@
28 | return topScreen.stackAnimation == RNSScreenStackAnimationSimplePush;
29 | }
30 | return NO;
31 | - } else {
32 | + } else
33 | +#endif
34 | + {
35 | return topScreen.stackAnimation != RNSScreenStackAnimationSimplePush;
36 | }
37 | }
38 |
39 | - (void)setupGestureHandlers
40 | {
41 | +#if !TARGET_OS_TV
42 | // gesture recognizers for custom stack animations
43 | RNSGestureRecognizer *leftEdgeSwipeGestureRecognizer = [[RNSGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipe:)];
44 | leftEdgeSwipeGestureRecognizer.edges = UIRectEdgeLeft;
45 | @@ -598,6 +604,7 @@
46 | break;
47 | }
48 | }
49 | +#endif
50 | }
51 |
52 | - (id)navigationController:(UINavigationController *)navigationController interactionControllerForAnimationController:(id)animationController
53 | diff --git a/node_modules/react-native-screens/ios/RNSScreenStackHeaderConfig.m b/node_modules/react-native-screens/ios/RNSScreenStackHeaderConfig.m
54 | index 425c636..1adb896 100644
55 | --- a/node_modules/react-native-screens/ios/RNSScreenStackHeaderConfig.m
56 | +++ b/node_modules/react-native-screens/ios/RNSScreenStackHeaderConfig.m
57 | @@ -509,6 +509,7 @@ API_AVAILABLE(ios(13.0)){
58 | break;
59 | }
60 | case RNSScreenStackHeaderSubviewTypeSearchBar: {
61 | +#if !TARGET_OS_TV
62 | if ([subview.subviews[0] isKindOfClass:[RNSSearchBar class]]) {
63 | if (@available(iOS 11.0, *)) {
64 | RNSSearchBar *searchBar = subview.subviews[0];
65 | @@ -516,6 +517,7 @@ API_AVAILABLE(ios(13.0)){
66 | navitem.hidesSearchBarWhenScrolling = searchBar.hideWhenScrolling;
67 | }
68 | }
69 | +#endif
70 | }
71 | case RNSScreenStackHeaderSubviewTypeBackButton: {
72 | break;
73 | diff --git a/node_modules/react-native-screens/ios/RNSSearchBar.m b/node_modules/react-native-screens/ios/RNSSearchBar.m
74 | index afd7988..f6c315c 100644
75 | --- a/node_modules/react-native-screens/ios/RNSSearchBar.m
76 | +++ b/node_modules/react-native-screens/ios/RNSSearchBar.m
77 | @@ -55,7 +55,7 @@
78 |
79 | - (void)setBarTintColor:(UIColor *)barTintColor
80 | {
81 | -#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
82 | +#if !TARGET_OS_TV && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
83 | __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
84 | if (@available(iOS 13.0, *)) {
85 | [_controller.searchBar.searchTextField setBackgroundColor:barTintColor];
86 | @@ -65,7 +65,7 @@
87 |
88 | - (void)setTextColor:(UIColor *)textColor
89 | {
90 | -#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
91 | +#if !TARGET_OS_TV && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
92 | __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
93 | _textColor = textColor;
94 | if (@available(iOS 13.0, *)) {
95 | @@ -78,7 +78,7 @@
96 |
97 | - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
98 | {
99 | -#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
100 | +#if !TARGET_OS_TV && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_13_0) && \
101 | __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
102 | if (@available(iOS 13.0, *)) {
103 | // for some reason, the color does not change when set at the beginning,
104 | @@ -88,8 +88,9 @@
105 | }
106 | }
107 | #endif
108 | -
109 | +#if !TARGET_OS_TV
110 | [_controller.searchBar setShowsCancelButton:YES animated:YES];
111 | +#endif
112 | [self becomeFirstResponder];
113 |
114 | if (self.onFocus) {
115 |
--------------------------------------------------------------------------------
/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=$((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 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
185 | cd "$(dirname "$0")"
186 | fi
187 |
188 | exec "$JAVACMD" "$@"
189 |
--------------------------------------------------------------------------------
/App.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Demo app showing how react-navigation works with Apple TV.
3 | *
4 | * @flow
5 | */
6 |
7 | import * as React from 'react';
8 | import {
9 | TouchableOpacity,
10 | StyleSheet,
11 | View,
12 | Text,
13 | TVMenuControl,
14 | Platform,
15 | } from 'react-native';
16 | import {NavigationContainer} from '@react-navigation/native';
17 | import {createStackNavigator} from '@react-navigation/stack';
18 |
19 | /**
20 | * We use this Button component instead of the one from react-native,
21 | * because we need to pass in `isTVSelectable` and have more control
22 | * over styling. We also use magnification instead of opacity to highlight
23 | * which button is focused.
24 | */
25 | function Button({title, onPress, onFocus, isTVSelectable}) {
26 | return (
27 | onPress()}
31 | onFocus={() => onFocus()}
32 | isTVSelectable={isTVSelectable}>
33 | {title}
34 |
35 | );
36 | }
37 |
38 | Button.defaultProps = {
39 | isTVSelectable: true,
40 | };
41 |
42 | /**
43 | * Demo button for the upper right that doesn't do anything.
44 | * It is styled to invisibly extend close to the center of the screen,
45 | * so that it will be reachable by the tvOS focus engine without having
46 | * to implement a TVFocusGuideView. We use tint instead of magnification
47 | * or opacity to highlight this button when focused.
48 | */
49 | function InfoButton() {
50 | const [infoButtonFocused, setInfoButtonFocused] = React.useState(false);
51 | return (
52 | alert('Info')} /* eslint-disable-line no-alert */
56 | onFocus={() => {
57 | console.log('Focus: Info button');
58 | setInfoButtonFocused(true);
59 | }}
60 | onBlur={() => setInfoButtonFocused(false)}>
61 |
62 |
68 | Info
69 |
70 |
71 | );
72 | }
73 |
74 | /**
75 | * The home screen.
76 | */
77 | function HomeScreen({navigation}) {
78 | // Set up focus and blur listeners to set our state properly;
79 | // isFocused === true when this screen is shown.
80 | const [isFocused, setIsFocused] = React.useState(false);
81 | React.useEffect(
82 | () =>
83 | navigation.addListener('focus', () => {
84 | setIsFocused(true);
85 | }),
86 | [navigation],
87 | );
88 | React.useEffect(
89 | () =>
90 | navigation.addListener('blur', () => {
91 | setIsFocused(false);
92 | }),
93 | [navigation],
94 | );
95 |
96 | return (
97 |
98 | Home Screen
99 |
109 | );
110 | }
111 |
112 | /**
113 | * Component for other screens in the stack navigator.
114 | */
115 | function Screen({route, navigation}) {
116 | // Same code as above for detecting when screens are visible
117 | const [isFocused, setIsFocused] = React.useState(false);
118 | React.useEffect(
119 | () =>
120 | navigation.addListener('focus', () => {
121 | setIsFocused(true);
122 | }),
123 | [navigation],
124 | );
125 | React.useEffect(
126 | () =>
127 | navigation.addListener('blur', () => {
128 | setIsFocused(false);
129 | }),
130 | [navigation],
131 | );
132 |
133 | // Hacky code to get which screen this is
134 | const index = parseInt(route.name.substring(6, 7), 10);
135 |
136 | // Enable the menu key when this screen appears.
137 | // In the cleanup method, disable the menu key again if we are
138 | // navigating back to the home screen; this way the menu key
139 | // will exit the app properly if pressed in the home screen.
140 | React.useEffect(() => {
141 | TVMenuControl.enableTVMenuKey();
142 | return () => {
143 | if (index === 1) {
144 | TVMenuControl.disableTVMenuKey();
145 | }
146 | };
147 | });
148 |
149 | const nextIndex = index + 1;
150 | const buttonTitle = `Go to Screen ${nextIndex}`;
151 | return (
152 |
153 | {`Screen ${index}`}
154 |
155 | {/* Put some buttons on the screen just for fun */}
156 |
175 | {index < 3 /* Don't push more than 3 screens on the stack */ ? (
176 | navigation.navigate(`Screen${nextIndex}`)}
179 | onFocus={() =>
180 | console.log(`Focus: ${route.name}, ${index}, nav button`)
181 | }
182 | title={buttonTitle}
183 | />
184 | ) : null}
185 |
186 | );
187 | }
188 |
189 | /**
190 | * Construct the options for the navigation header.
191 | */
192 |
193 | let infoButtonFocused = false;
194 |
195 | const headerOptions = (title) => {
196 | return {
197 | title,
198 | headerBackTitleStyle: styles.headerBackTitle,
199 | headerStyle: styles.header,
200 | headerTitleContainerStyle: styles.headerTitleContainer,
201 | headerTitleStyle: styles.headerTitle,
202 | headerRight: () => ,
203 | };
204 | };
205 |
206 | const Stack = createStackNavigator();
207 |
208 | /**
209 | * Standard construction of a stack navigator.
210 | */
211 | function App() {
212 | return (
213 |
214 |
215 |
220 |
225 |
230 |
235 |
236 |
237 | );
238 | }
239 |
240 | export default App;
241 |
242 | const colors = {
243 | blue: '#0070d2',
244 | white: '#ffffff',
245 | yellow: '#ffdd00',
246 | };
247 |
248 | const scale = Platform.isTVOS ? 1.0 : 0.5;
249 |
250 | const styles = StyleSheet.create({
251 | container: {
252 | flex: 1,
253 | alignItems: 'center',
254 | justifyContent: 'center',
255 | },
256 | title: {
257 | fontSize: 50*scale,
258 | },
259 | header: {
260 | height: 150*scale,
261 | backgroundColor: colors.blue,
262 | },
263 | headerTitle: {
264 | fontSize: 50*scale,
265 | color: colors.white,
266 | },
267 | headerBackTitle: {
268 | fontSize: 40*scale,
269 | color: colors.white,
270 | },
271 | headerBackTitleFocused: {
272 | fontSize: 40*scale,
273 | color: colors.yellow,
274 | },
275 | headerTitleContainer: {
276 | marginTop: 0,
277 | },
278 | button: {
279 | fontSize: 50*scale,
280 | color: colors.blue,
281 | margin: 50*scale,
282 | },
283 | buttonContainer: {
284 | flexDirection: 'row',
285 | margin: 100*scale,
286 | },
287 | infoButtonContainer: {
288 | backgroundColor: 'transparent',
289 | width: 700*scale,
290 | flexDirection: 'row',
291 | alignItems: 'center',
292 | justifyContent: 'center',
293 | },
294 | spacer: {
295 | flex: 1,
296 | },
297 | });
298 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | // enableHermes should be true for using Reanimated
81 | project.ext.react = [
82 | enableHermes: true, // 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.reactnavigationtvdemo"
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://facebook.github.io/react-native/docs/signed-apk-android.
162 | signingConfig signingConfigs.debug
163 | minifyEnabled enableProguardInReleaseBuilds
164 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
165 | }
166 | }
167 |
168 | packagingOptions {
169 | pickFirst "lib/armeabi-v7a/libc++_shared.so"
170 | pickFirst "lib/arm64-v8a/libc++_shared.so"
171 | pickFirst "lib/x86/libc++_shared.so"
172 | pickFirst "lib/x86_64/libc++_shared.so"
173 | }
174 |
175 | // applicationVariants are e.g. debug, release
176 | applicationVariants.all { variant ->
177 | variant.outputs.each { output ->
178 | // For each separate APK per architecture, set a unique version code as described here:
179 | // https://developer.android.com/studio/build/configure-apk-splits.html
180 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
181 | def abi = output.getFilter(OutputFile.ABI)
182 | if (abi != null) { // null for the universal-debug, universal-release variants
183 | output.versionCodeOverride =
184 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
185 | }
186 |
187 | }
188 | }
189 | }
190 |
191 | dependencies {
192 | implementation fileTree(dir: "libs", include: ["*.jar"])
193 | //noinspection GradleDynamicVersion
194 | implementation "com.facebook.react:react-native:+" // From node_modules
195 |
196 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
197 |
198 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
199 | exclude group:'com.facebook.fbjni'
200 | }
201 |
202 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
203 | exclude group:'com.facebook.flipper'
204 | }
205 |
206 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
207 | exclude group:'com.facebook.flipper'
208 | }
209 |
210 | if (enableHermes) {
211 | def hermesPath = "../../node_modules/hermes-engine/android/";
212 | debugImplementation files(hermesPath + "hermes-debug.aar")
213 | releaseImplementation files(hermesPath + "hermes-release.aar")
214 | } else {
215 | implementation jscFlavor
216 | }
217 | }
218 |
219 | // Run this once to be able to run the application with BUCK
220 | // puts all compile dependencies into folder libs for BUCK to use
221 | task copyDownloadableDepsToLibs(type: Copy) {
222 | from configurations.compile
223 | into 'libs'
224 | }
225 |
226 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
227 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - DoubleConversion (1.1.6)
4 | - FBLazyVector (0.64.2-0)
5 | - FBReactNativeSpec (0.64.2-0):
6 | - RCT-Folly (= 2020.01.13.00)
7 | - RCTRequired (= 0.64.2-0)
8 | - RCTTypeSafety (= 0.64.2-0)
9 | - React-Core (= 0.64.2-0)
10 | - React-jsi (= 0.64.2-0)
11 | - ReactCommon/turbomodule/core (= 0.64.2-0)
12 | - glog (0.3.5)
13 | - RCT-Folly (2020.01.13.00):
14 | - boost-for-react-native
15 | - DoubleConversion
16 | - glog
17 | - RCT-Folly/Default (= 2020.01.13.00)
18 | - RCT-Folly/Default (2020.01.13.00):
19 | - boost-for-react-native
20 | - DoubleConversion
21 | - glog
22 | - RCTRequired (0.64.2-0)
23 | - RCTTypeSafety (0.64.2-0):
24 | - FBLazyVector (= 0.64.2-0)
25 | - RCT-Folly (= 2020.01.13.00)
26 | - RCTRequired (= 0.64.2-0)
27 | - React-Core (= 0.64.2-0)
28 | - React (0.64.2-0):
29 | - React-Core (= 0.64.2-0)
30 | - React-Core/DevSupport (= 0.64.2-0)
31 | - React-Core/RCTWebSocket (= 0.64.2-0)
32 | - React-RCTAnimation (= 0.64.2-0)
33 | - React-RCTBlob (= 0.64.2-0)
34 | - React-RCTImage (= 0.64.2-0)
35 | - React-RCTLinking (= 0.64.2-0)
36 | - React-RCTNetwork (= 0.64.2-0)
37 | - React-RCTSettings (= 0.64.2-0)
38 | - React-RCTText (= 0.64.2-0)
39 | - React-callinvoker (0.64.2-0)
40 | - React-Core (0.64.2-0):
41 | - glog
42 | - RCT-Folly (= 2020.01.13.00)
43 | - React-Core/Default (= 0.64.2-0)
44 | - React-cxxreact (= 0.64.2-0)
45 | - React-jsi (= 0.64.2-0)
46 | - React-jsiexecutor (= 0.64.2-0)
47 | - React-perflogger (= 0.64.2-0)
48 | - Yoga
49 | - React-Core/CoreModulesHeaders (0.64.2-0):
50 | - glog
51 | - RCT-Folly (= 2020.01.13.00)
52 | - React-Core/Default
53 | - React-cxxreact (= 0.64.2-0)
54 | - React-jsi (= 0.64.2-0)
55 | - React-jsiexecutor (= 0.64.2-0)
56 | - React-perflogger (= 0.64.2-0)
57 | - Yoga
58 | - React-Core/Default (0.64.2-0):
59 | - glog
60 | - RCT-Folly (= 2020.01.13.00)
61 | - React-cxxreact (= 0.64.2-0)
62 | - React-jsi (= 0.64.2-0)
63 | - React-jsiexecutor (= 0.64.2-0)
64 | - React-perflogger (= 0.64.2-0)
65 | - Yoga
66 | - React-Core/DevSupport (0.64.2-0):
67 | - glog
68 | - RCT-Folly (= 2020.01.13.00)
69 | - React-Core/Default (= 0.64.2-0)
70 | - React-Core/RCTWebSocket (= 0.64.2-0)
71 | - React-cxxreact (= 0.64.2-0)
72 | - React-jsi (= 0.64.2-0)
73 | - React-jsiexecutor (= 0.64.2-0)
74 | - React-jsinspector (= 0.64.2-0)
75 | - React-perflogger (= 0.64.2-0)
76 | - Yoga
77 | - React-Core/RCTAnimationHeaders (0.64.2-0):
78 | - glog
79 | - RCT-Folly (= 2020.01.13.00)
80 | - React-Core/Default
81 | - React-cxxreact (= 0.64.2-0)
82 | - React-jsi (= 0.64.2-0)
83 | - React-jsiexecutor (= 0.64.2-0)
84 | - React-perflogger (= 0.64.2-0)
85 | - Yoga
86 | - React-Core/RCTBlobHeaders (0.64.2-0):
87 | - glog
88 | - RCT-Folly (= 2020.01.13.00)
89 | - React-Core/Default
90 | - React-cxxreact (= 0.64.2-0)
91 | - React-jsi (= 0.64.2-0)
92 | - React-jsiexecutor (= 0.64.2-0)
93 | - React-perflogger (= 0.64.2-0)
94 | - Yoga
95 | - React-Core/RCTImageHeaders (0.64.2-0):
96 | - glog
97 | - RCT-Folly (= 2020.01.13.00)
98 | - React-Core/Default
99 | - React-cxxreact (= 0.64.2-0)
100 | - React-jsi (= 0.64.2-0)
101 | - React-jsiexecutor (= 0.64.2-0)
102 | - React-perflogger (= 0.64.2-0)
103 | - Yoga
104 | - React-Core/RCTLinkingHeaders (0.64.2-0):
105 | - glog
106 | - RCT-Folly (= 2020.01.13.00)
107 | - React-Core/Default
108 | - React-cxxreact (= 0.64.2-0)
109 | - React-jsi (= 0.64.2-0)
110 | - React-jsiexecutor (= 0.64.2-0)
111 | - React-perflogger (= 0.64.2-0)
112 | - Yoga
113 | - React-Core/RCTNetworkHeaders (0.64.2-0):
114 | - glog
115 | - RCT-Folly (= 2020.01.13.00)
116 | - React-Core/Default
117 | - React-cxxreact (= 0.64.2-0)
118 | - React-jsi (= 0.64.2-0)
119 | - React-jsiexecutor (= 0.64.2-0)
120 | - React-perflogger (= 0.64.2-0)
121 | - Yoga
122 | - React-Core/RCTSettingsHeaders (0.64.2-0):
123 | - glog
124 | - RCT-Folly (= 2020.01.13.00)
125 | - React-Core/Default
126 | - React-cxxreact (= 0.64.2-0)
127 | - React-jsi (= 0.64.2-0)
128 | - React-jsiexecutor (= 0.64.2-0)
129 | - React-perflogger (= 0.64.2-0)
130 | - Yoga
131 | - React-Core/RCTTextHeaders (0.64.2-0):
132 | - glog
133 | - RCT-Folly (= 2020.01.13.00)
134 | - React-Core/Default
135 | - React-cxxreact (= 0.64.2-0)
136 | - React-jsi (= 0.64.2-0)
137 | - React-jsiexecutor (= 0.64.2-0)
138 | - React-perflogger (= 0.64.2-0)
139 | - Yoga
140 | - React-Core/RCTWebSocket (0.64.2-0):
141 | - glog
142 | - RCT-Folly (= 2020.01.13.00)
143 | - React-Core/Default (= 0.64.2-0)
144 | - React-cxxreact (= 0.64.2-0)
145 | - React-jsi (= 0.64.2-0)
146 | - React-jsiexecutor (= 0.64.2-0)
147 | - React-perflogger (= 0.64.2-0)
148 | - Yoga
149 | - React-CoreModules (0.64.2-0):
150 | - FBReactNativeSpec (= 0.64.2-0)
151 | - RCT-Folly (= 2020.01.13.00)
152 | - RCTTypeSafety (= 0.64.2-0)
153 | - React-Core/CoreModulesHeaders (= 0.64.2-0)
154 | - React-jsi (= 0.64.2-0)
155 | - React-RCTImage (= 0.64.2-0)
156 | - ReactCommon/turbomodule/core (= 0.64.2-0)
157 | - React-cxxreact (0.64.2-0):
158 | - boost-for-react-native (= 1.63.0)
159 | - DoubleConversion
160 | - glog
161 | - RCT-Folly (= 2020.01.13.00)
162 | - React-callinvoker (= 0.64.2-0)
163 | - React-jsi (= 0.64.2-0)
164 | - React-jsinspector (= 0.64.2-0)
165 | - React-perflogger (= 0.64.2-0)
166 | - React-runtimeexecutor (= 0.64.2-0)
167 | - React-jsi (0.64.2-0):
168 | - boost-for-react-native (= 1.63.0)
169 | - DoubleConversion
170 | - glog
171 | - RCT-Folly (= 2020.01.13.00)
172 | - React-jsi/Default (= 0.64.2-0)
173 | - React-jsi/Default (0.64.2-0):
174 | - boost-for-react-native (= 1.63.0)
175 | - DoubleConversion
176 | - glog
177 | - RCT-Folly (= 2020.01.13.00)
178 | - React-jsiexecutor (0.64.2-0):
179 | - DoubleConversion
180 | - glog
181 | - RCT-Folly (= 2020.01.13.00)
182 | - React-cxxreact (= 0.64.2-0)
183 | - React-jsi (= 0.64.2-0)
184 | - React-perflogger (= 0.64.2-0)
185 | - React-jsinspector (0.64.2-0)
186 | - react-native-safe-area-context (3.2.0):
187 | - React-Core
188 | - React-perflogger (0.64.2-0)
189 | - React-RCTAnimation (0.64.2-0):
190 | - FBReactNativeSpec (= 0.64.2-0)
191 | - RCT-Folly (= 2020.01.13.00)
192 | - RCTTypeSafety (= 0.64.2-0)
193 | - React-Core/RCTAnimationHeaders (= 0.64.2-0)
194 | - React-jsi (= 0.64.2-0)
195 | - ReactCommon/turbomodule/core (= 0.64.2-0)
196 | - React-RCTBlob (0.64.2-0):
197 | - FBReactNativeSpec (= 0.64.2-0)
198 | - RCT-Folly (= 2020.01.13.00)
199 | - React-Core/RCTBlobHeaders (= 0.64.2-0)
200 | - React-Core/RCTWebSocket (= 0.64.2-0)
201 | - React-jsi (= 0.64.2-0)
202 | - React-RCTNetwork (= 0.64.2-0)
203 | - ReactCommon/turbomodule/core (= 0.64.2-0)
204 | - React-RCTImage (0.64.2-0):
205 | - FBReactNativeSpec (= 0.64.2-0)
206 | - RCT-Folly (= 2020.01.13.00)
207 | - RCTTypeSafety (= 0.64.2-0)
208 | - React-Core/RCTImageHeaders (= 0.64.2-0)
209 | - React-jsi (= 0.64.2-0)
210 | - React-RCTNetwork (= 0.64.2-0)
211 | - ReactCommon/turbomodule/core (= 0.64.2-0)
212 | - React-RCTLinking (0.64.2-0):
213 | - FBReactNativeSpec (= 0.64.2-0)
214 | - React-Core/RCTLinkingHeaders (= 0.64.2-0)
215 | - React-jsi (= 0.64.2-0)
216 | - ReactCommon/turbomodule/core (= 0.64.2-0)
217 | - React-RCTNetwork (0.64.2-0):
218 | - FBReactNativeSpec (= 0.64.2-0)
219 | - RCT-Folly (= 2020.01.13.00)
220 | - RCTTypeSafety (= 0.64.2-0)
221 | - React-Core/RCTNetworkHeaders (= 0.64.2-0)
222 | - React-jsi (= 0.64.2-0)
223 | - ReactCommon/turbomodule/core (= 0.64.2-0)
224 | - React-RCTSettings (0.64.2-0):
225 | - FBReactNativeSpec (= 0.64.2-0)
226 | - RCT-Folly (= 2020.01.13.00)
227 | - RCTTypeSafety (= 0.64.2-0)
228 | - React-Core/RCTSettingsHeaders (= 0.64.2-0)
229 | - React-jsi (= 0.64.2-0)
230 | - ReactCommon/turbomodule/core (= 0.64.2-0)
231 | - React-RCTText (0.64.2-0):
232 | - React-Core/RCTTextHeaders (= 0.64.2-0)
233 | - React-runtimeexecutor (0.64.2-0):
234 | - React-jsi (= 0.64.2-0)
235 | - ReactCommon/turbomodule/core (0.64.2-0):
236 | - DoubleConversion
237 | - glog
238 | - RCT-Folly (= 2020.01.13.00)
239 | - React-callinvoker (= 0.64.2-0)
240 | - React-Core (= 0.64.2-0)
241 | - React-cxxreact (= 0.64.2-0)
242 | - React-jsi (= 0.64.2-0)
243 | - React-perflogger (= 0.64.2-0)
244 | - RNCMaskedView (0.1.10):
245 | - React
246 | - RNGestureHandler (1.10.3):
247 | - React-Core
248 | - RNReanimated (2.2.0):
249 | - DoubleConversion
250 | - FBLazyVector
251 | - FBReactNativeSpec
252 | - glog
253 | - RCT-Folly
254 | - RCTRequired
255 | - RCTTypeSafety
256 | - React
257 | - React-callinvoker
258 | - React-Core
259 | - React-Core/DevSupport
260 | - React-Core/RCTWebSocket
261 | - React-CoreModules
262 | - React-cxxreact
263 | - React-jsi
264 | - React-jsiexecutor
265 | - React-jsinspector
266 | - React-RCTAnimation
267 | - React-RCTBlob
268 | - React-RCTImage
269 | - React-RCTLinking
270 | - React-RCTNetwork
271 | - React-RCTSettings
272 | - React-RCTText
273 | - ReactCommon/turbomodule/core
274 | - Yoga
275 | - RNScreens (3.4.0):
276 | - React-Core
277 | - React-RCTImage
278 | - Yoga (1.14.0)
279 |
280 | DEPENDENCIES:
281 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
282 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
283 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
284 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
285 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
286 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
287 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
288 | - React (from `../node_modules/react-native/`)
289 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
290 | - React-Core (from `../node_modules/react-native/`)
291 | - React-Core/DevSupport (from `../node_modules/react-native/`)
292 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
293 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
294 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
295 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
296 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
297 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
298 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
299 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
300 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
301 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
302 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
303 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
304 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
305 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
306 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
307 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
308 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
309 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
310 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
311 | - RNReanimated (from `../node_modules/react-native-reanimated`)
312 | - RNScreens (from `../node_modules/react-native-screens`)
313 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
314 |
315 | SPEC REPOS:
316 | trunk:
317 | - boost-for-react-native
318 |
319 | EXTERNAL SOURCES:
320 | DoubleConversion:
321 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
322 | FBLazyVector:
323 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
324 | FBReactNativeSpec:
325 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
326 | glog:
327 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
328 | RCT-Folly:
329 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
330 | RCTRequired:
331 | :path: "../node_modules/react-native/Libraries/RCTRequired"
332 | RCTTypeSafety:
333 | :path: "../node_modules/react-native/Libraries/TypeSafety"
334 | React:
335 | :path: "../node_modules/react-native/"
336 | React-callinvoker:
337 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
338 | React-Core:
339 | :path: "../node_modules/react-native/"
340 | React-CoreModules:
341 | :path: "../node_modules/react-native/React/CoreModules"
342 | React-cxxreact:
343 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
344 | React-jsi:
345 | :path: "../node_modules/react-native/ReactCommon/jsi"
346 | React-jsiexecutor:
347 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
348 | React-jsinspector:
349 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
350 | react-native-safe-area-context:
351 | :path: "../node_modules/react-native-safe-area-context"
352 | React-perflogger:
353 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
354 | React-RCTAnimation:
355 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
356 | React-RCTBlob:
357 | :path: "../node_modules/react-native/Libraries/Blob"
358 | React-RCTImage:
359 | :path: "../node_modules/react-native/Libraries/Image"
360 | React-RCTLinking:
361 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
362 | React-RCTNetwork:
363 | :path: "../node_modules/react-native/Libraries/Network"
364 | React-RCTSettings:
365 | :path: "../node_modules/react-native/Libraries/Settings"
366 | React-RCTText:
367 | :path: "../node_modules/react-native/Libraries/Text"
368 | React-runtimeexecutor:
369 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
370 | ReactCommon:
371 | :path: "../node_modules/react-native/ReactCommon"
372 | RNCMaskedView:
373 | :path: "../node_modules/@react-native-community/masked-view"
374 | RNGestureHandler:
375 | :path: "../node_modules/react-native-gesture-handler"
376 | RNReanimated:
377 | :path: "../node_modules/react-native-reanimated"
378 | RNScreens:
379 | :path: "../node_modules/react-native-screens"
380 | Yoga:
381 | :path: "../node_modules/react-native/ReactCommon/yoga"
382 |
383 | SPEC CHECKSUMS:
384 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
385 | DoubleConversion: cde416483dac037923206447da6e1454df403714
386 | FBLazyVector: 0b831bc84e23eba71f4bfa92cd084fa6ba557bce
387 | FBReactNativeSpec: e8a8a9aa7897256934724072d0c6489546258c13
388 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
389 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
390 | RCTRequired: dd6448628b6a10ba27c218db57c1e856c8739550
391 | RCTTypeSafety: c467ece7a63da841541d039f66d6390760b94847
392 | React: 8178b77d72ee70274ad0198c5b97bb78e81291e8
393 | React-callinvoker: 3c9ae53af8d3f4d9f4420088991dcf3a96c5eed1
394 | React-Core: a9179cb92fa074db002b0371209a40be9281764a
395 | React-CoreModules: 5966f0ae81caae9251c388f764d50767ee593c5a
396 | React-cxxreact: 9b237d968f3fc19e10d3ba40534c9559c40a47d0
397 | React-jsi: daac79dc576288f85bc5350fa3d370411d5f115c
398 | React-jsiexecutor: a004bb9353d4082afcbc75e85d2d551d62c6c523
399 | React-jsinspector: c31f312672655971006c562a49629c676bfa0214
400 | react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
401 | React-perflogger: 262274e5e18ebd830c3ed7b7613825f700cc204f
402 | React-RCTAnimation: ef9998e5adb7888aad0829ee8650302287189e6c
403 | React-RCTBlob: 30af626ffc4a22675e9caab7d49bac3b4b64c348
404 | React-RCTImage: 27d477e0d60ef01f6e2bb4f287d9dc53c6e4bba3
405 | React-RCTLinking: cbf7d0d3d96fea9f28f72be6f28f601b3470b9c6
406 | React-RCTNetwork: 8f2fd7a58dac4d8ca4cbb9982ed75a50be3a3495
407 | React-RCTSettings: c1b6cf7cccbf55fb2cdf06aef841a6a746b8f966
408 | React-RCTText: e39b9f770ab48b74865762b7e592aecf4e396d61
409 | React-runtimeexecutor: 76f65a1fe4458e5a88698acce9000568d14c6c64
410 | ReactCommon: c74175fa67bf0fe1d4ff1100fc3de56f0dcce9c1
411 | RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
412 | RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
413 | RNReanimated: 2890fc5c407cd71da99851e92bef5a571334b7a4
414 | RNScreens: 21b73c94c9117e1110a79ee0ee80c93ccefed8ce
415 | Yoga: fab3dd0deab5c5c18ed2948c8c5d43648daa7225
416 |
417 | PODFILE CHECKSUM: 45c9fd0eb048219509ff70ab5440279850945f30
418 |
419 | COCOAPODS: 1.10.1
420 |
--------------------------------------------------------------------------------
/ios/ReactNavigationTVDemo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* ReactNavigationTVDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNavigationTVDemoTests.m */; };
11 | 0B76C194E78C1EBF135347A3 /* libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B93811980778B9A27302AC32 /* libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a */; };
12 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
14 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
15 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
16 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
17 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
18 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
19 | 2DCD954D1E0B4F2C00145EB5 /* ReactNavigationTVDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNavigationTVDemoTests.m */; };
20 | 7B981454655688DDCF8C26D1 /* libPods-ReactNavigationTVDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B954449DC77FE81E6BBA0B6C /* libPods-ReactNavigationTVDemo.a */; };
21 | EC4ADDED12E2738146FC8D65 /* libPods-ReactNavigationTVDemo-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BA12C45753AC7AC6D66B63C /* libPods-ReactNavigationTVDemo-tvOS.a */; };
22 | FA37680E87B9DE01167E2DBC /* libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C6B4B742E0AF9C7D4A2764D6 /* libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-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 = ReactNavigationTVDemo;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "ReactNavigationTVDemo-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 /* ReactNavigationTVDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNavigationTVDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* ReactNavigationTVDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNavigationTVDemoTests.m; sourceTree = ""; };
47 | 08E767D6B986EDEFFA499248 /* Pods-ReactNavigationTVDemo-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOS/Pods-ReactNavigationTVDemo-tvOS.debug.xcconfig"; sourceTree = ""; };
48 | 0A2C25AEF4CBEE68666B2651 /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.debug.xcconfig"; sourceTree = ""; };
49 | 0BA12C45753AC7AC6D66B63C /* libPods-ReactNavigationTVDemo-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNavigationTVDemo-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
50 | 13B07F961A680F5B00A75B9A /* ReactNavigationTVDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNavigationTVDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
51 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNavigationTVDemo/AppDelegate.h; sourceTree = ""; };
52 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNavigationTVDemo/AppDelegate.m; sourceTree = ""; };
53 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
54 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNavigationTVDemo/Images.xcassets; sourceTree = ""; };
55 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNavigationTVDemo/Info.plist; sourceTree = ""; };
56 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNavigationTVDemo/main.m; sourceTree = ""; };
57 | 25142A9732BC6D9FE9B747B8 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.debug.xcconfig"; sourceTree = ""; };
58 | 2CF939F170895987AAECDE0B /* Pods-ReactNavigationTVDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo.release.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo/Pods-ReactNavigationTVDemo.release.xcconfig"; sourceTree = ""; };
59 | 2D02E47B1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNavigationTVDemo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 2D02E4901E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNavigationTVDemo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
61 | 637414D853E7B99F2BD0CB28 /* Pods-ReactNavigationTVDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo.debug.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo/Pods-ReactNavigationTVDemo.debug.xcconfig"; sourceTree = ""; };
62 | 9726FE3DE27B2C5BBAF8FC94 /* Pods-ReactNavigationTVDemo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOSTests.debug.xcconfig"; sourceTree = ""; };
63 | 9BBF8E5D38C9962E229A2DF3 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.release.xcconfig"; sourceTree = ""; };
64 | 9E982CD627BEAFCF7E034755 /* Pods-ReactNavigationTVDemo-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOS.release.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOS/Pods-ReactNavigationTVDemo-tvOS.release.xcconfig"; sourceTree = ""; };
65 | B93191FCD5743EFECD81C93E /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.release.xcconfig"; sourceTree = ""; };
66 | B93811980778B9A27302AC32 /* libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
67 | B954449DC77FE81E6BBA0B6C /* libPods-ReactNavigationTVDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNavigationTVDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
68 | BB49B28832F25C60C74164CD /* Pods-ReactNavigationTVDemo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNavigationTVDemo-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOSTests.release.xcconfig"; sourceTree = ""; };
69 | C6B4B742E0AF9C7D4A2764D6 /* libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
70 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
71 | 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; };
72 | /* End PBXFileReference section */
73 |
74 | /* Begin PBXFrameworksBuildPhase section */
75 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
76 | isa = PBXFrameworksBuildPhase;
77 | buildActionMask = 2147483647;
78 | files = (
79 | 0B76C194E78C1EBF135347A3 /* libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a in Frameworks */,
80 | );
81 | runOnlyForDeploymentPostprocessing = 0;
82 | };
83 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
84 | isa = PBXFrameworksBuildPhase;
85 | buildActionMask = 2147483647;
86 | files = (
87 | 7B981454655688DDCF8C26D1 /* libPods-ReactNavigationTVDemo.a in Frameworks */,
88 | );
89 | runOnlyForDeploymentPostprocessing = 0;
90 | };
91 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
92 | isa = PBXFrameworksBuildPhase;
93 | buildActionMask = 2147483647;
94 | files = (
95 | EC4ADDED12E2738146FC8D65 /* libPods-ReactNavigationTVDemo-tvOS.a in Frameworks */,
96 | );
97 | runOnlyForDeploymentPostprocessing = 0;
98 | };
99 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
100 | isa = PBXFrameworksBuildPhase;
101 | buildActionMask = 2147483647;
102 | files = (
103 | FA37680E87B9DE01167E2DBC /* libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.a in Frameworks */,
104 | );
105 | runOnlyForDeploymentPostprocessing = 0;
106 | };
107 | /* End PBXFrameworksBuildPhase section */
108 |
109 | /* Begin PBXGroup section */
110 | 00E356EF1AD99517003FC87E /* ReactNavigationTVDemoTests */ = {
111 | isa = PBXGroup;
112 | children = (
113 | 00E356F21AD99517003FC87E /* ReactNavigationTVDemoTests.m */,
114 | 00E356F01AD99517003FC87E /* Supporting Files */,
115 | );
116 | path = ReactNavigationTVDemoTests;
117 | sourceTree = "";
118 | };
119 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
120 | isa = PBXGroup;
121 | children = (
122 | 00E356F11AD99517003FC87E /* Info.plist */,
123 | );
124 | name = "Supporting Files";
125 | sourceTree = "";
126 | };
127 | 13B07FAE1A68108700A75B9A /* ReactNavigationTVDemo */ = {
128 | isa = PBXGroup;
129 | children = (
130 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
131 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
132 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
133 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
134 | 13B07FB61A68108700A75B9A /* Info.plist */,
135 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
136 | 13B07FB71A68108700A75B9A /* main.m */,
137 | );
138 | name = ReactNavigationTVDemo;
139 | sourceTree = "";
140 | };
141 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
142 | isa = PBXGroup;
143 | children = (
144 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
145 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
146 | B954449DC77FE81E6BBA0B6C /* libPods-ReactNavigationTVDemo.a */,
147 | B93811980778B9A27302AC32 /* libPods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.a */,
148 | 0BA12C45753AC7AC6D66B63C /* libPods-ReactNavigationTVDemo-tvOS.a */,
149 | C6B4B742E0AF9C7D4A2764D6 /* libPods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.a */,
150 | );
151 | name = Frameworks;
152 | sourceTree = "";
153 | };
154 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
155 | isa = PBXGroup;
156 | children = (
157 | );
158 | name = Libraries;
159 | sourceTree = "";
160 | };
161 | 83CBB9F61A601CBA00E9B192 = {
162 | isa = PBXGroup;
163 | children = (
164 | 13B07FAE1A68108700A75B9A /* ReactNavigationTVDemo */,
165 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
166 | 00E356EF1AD99517003FC87E /* ReactNavigationTVDemoTests */,
167 | 83CBBA001A601CBA00E9B192 /* Products */,
168 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
169 | D17B074F42FF0D9D8941AE3B /* Pods */,
170 | );
171 | indentWidth = 2;
172 | sourceTree = "";
173 | tabWidth = 2;
174 | usesTabs = 0;
175 | };
176 | 83CBBA001A601CBA00E9B192 /* Products */ = {
177 | isa = PBXGroup;
178 | children = (
179 | 13B07F961A680F5B00A75B9A /* ReactNavigationTVDemo.app */,
180 | 00E356EE1AD99517003FC87E /* ReactNavigationTVDemoTests.xctest */,
181 | 2D02E47B1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS.app */,
182 | 2D02E4901E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOSTests.xctest */,
183 | );
184 | name = Products;
185 | sourceTree = "";
186 | };
187 | D17B074F42FF0D9D8941AE3B /* Pods */ = {
188 | isa = PBXGroup;
189 | children = (
190 | 637414D853E7B99F2BD0CB28 /* Pods-ReactNavigationTVDemo.debug.xcconfig */,
191 | 2CF939F170895987AAECDE0B /* Pods-ReactNavigationTVDemo.release.xcconfig */,
192 | 25142A9732BC6D9FE9B747B8 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.debug.xcconfig */,
193 | 9BBF8E5D38C9962E229A2DF3 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.release.xcconfig */,
194 | 08E767D6B986EDEFFA499248 /* Pods-ReactNavigationTVDemo-tvOS.debug.xcconfig */,
195 | 9E982CD627BEAFCF7E034755 /* Pods-ReactNavigationTVDemo-tvOS.release.xcconfig */,
196 | 9726FE3DE27B2C5BBAF8FC94 /* Pods-ReactNavigationTVDemo-tvOSTests.debug.xcconfig */,
197 | BB49B28832F25C60C74164CD /* Pods-ReactNavigationTVDemo-tvOSTests.release.xcconfig */,
198 | 0A2C25AEF4CBEE68666B2651 /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.debug.xcconfig */,
199 | B93191FCD5743EFECD81C93E /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests.release.xcconfig */,
200 | );
201 | name = Pods;
202 | path = Pods;
203 | sourceTree = "";
204 | };
205 | /* End PBXGroup section */
206 |
207 | /* Begin PBXNativeTarget section */
208 | 00E356ED1AD99517003FC87E /* ReactNavigationTVDemoTests */ = {
209 | isa = PBXNativeTarget;
210 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNavigationTVDemoTests" */;
211 | buildPhases = (
212 | 31EAEC899C92AD971BAEBFC3 /* [CP] Check Pods Manifest.lock */,
213 | 00E356EA1AD99517003FC87E /* Sources */,
214 | 00E356EB1AD99517003FC87E /* Frameworks */,
215 | 00E356EC1AD99517003FC87E /* Resources */,
216 | 695A7A74B7E9CA8BA091C90A /* [CP] Copy Pods Resources */,
217 | );
218 | buildRules = (
219 | );
220 | dependencies = (
221 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
222 | );
223 | name = ReactNavigationTVDemoTests;
224 | productName = ReactNavigationTVDemoTests;
225 | productReference = 00E356EE1AD99517003FC87E /* ReactNavigationTVDemoTests.xctest */;
226 | productType = "com.apple.product-type.bundle.unit-test";
227 | };
228 | 13B07F861A680F5B00A75B9A /* ReactNavigationTVDemo */ = {
229 | isa = PBXNativeTarget;
230 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNavigationTVDemo" */;
231 | buildPhases = (
232 | 8BE3984EB96BD8DC9917C7F0 /* [CP] Check Pods Manifest.lock */,
233 | FD10A7F022414F080027D42C /* Start Packager */,
234 | 13B07F871A680F5B00A75B9A /* Sources */,
235 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
236 | 13B07F8E1A680F5B00A75B9A /* Resources */,
237 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
238 | F8C996F52EE722917BC2B2E7 /* [CP] Copy Pods Resources */,
239 | );
240 | buildRules = (
241 | );
242 | dependencies = (
243 | );
244 | name = ReactNavigationTVDemo;
245 | productName = ReactNavigationTVDemo;
246 | productReference = 13B07F961A680F5B00A75B9A /* ReactNavigationTVDemo.app */;
247 | productType = "com.apple.product-type.application";
248 | };
249 | 2D02E47A1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS */ = {
250 | isa = PBXNativeTarget;
251 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNavigationTVDemo-tvOS" */;
252 | buildPhases = (
253 | 184441B01F145C0E7801D4FE /* [CP] Check Pods Manifest.lock */,
254 | FD10A7F122414F3F0027D42C /* Start Packager */,
255 | 2D02E4771E0B4A5D006451C7 /* Sources */,
256 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
257 | 2D02E4791E0B4A5D006451C7 /* Resources */,
258 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
259 | 1B017DAF27C64489C8C3AE04 /* [CP] Copy Pods Resources */,
260 | );
261 | buildRules = (
262 | );
263 | dependencies = (
264 | );
265 | name = "ReactNavigationTVDemo-tvOS";
266 | productName = "ReactNavigationTVDemo-tvOS";
267 | productReference = 2D02E47B1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS.app */;
268 | productType = "com.apple.product-type.application";
269 | };
270 | 2D02E48F1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOSTests */ = {
271 | isa = PBXNativeTarget;
272 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNavigationTVDemo-tvOSTests" */;
273 | buildPhases = (
274 | 02E1350E1BCD1E82F3FE9A53 /* [CP] Check Pods Manifest.lock */,
275 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
276 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
277 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
278 | 809633D2CEF6E741DF642211 /* [CP] Copy Pods Resources */,
279 | );
280 | buildRules = (
281 | );
282 | dependencies = (
283 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
284 | );
285 | name = "ReactNavigationTVDemo-tvOSTests";
286 | productName = "ReactNavigationTVDemo-tvOSTests";
287 | productReference = 2D02E4901E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOSTests.xctest */;
288 | productType = "com.apple.product-type.bundle.unit-test";
289 | };
290 | /* End PBXNativeTarget section */
291 |
292 | /* Begin PBXProject section */
293 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
294 | isa = PBXProject;
295 | attributes = {
296 | LastUpgradeCheck = 1130;
297 | TargetAttributes = {
298 | 00E356ED1AD99517003FC87E = {
299 | CreatedOnToolsVersion = 6.2;
300 | TestTargetID = 13B07F861A680F5B00A75B9A;
301 | };
302 | 13B07F861A680F5B00A75B9A = {
303 | LastSwiftMigration = 1120;
304 | };
305 | 2D02E47A1E0B4A5D006451C7 = {
306 | CreatedOnToolsVersion = 8.2.1;
307 | ProvisioningStyle = Automatic;
308 | };
309 | 2D02E48F1E0B4A5D006451C7 = {
310 | CreatedOnToolsVersion = 8.2.1;
311 | ProvisioningStyle = Automatic;
312 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
313 | };
314 | };
315 | };
316 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNavigationTVDemo" */;
317 | compatibilityVersion = "Xcode 3.2";
318 | developmentRegion = en;
319 | hasScannedForEncodings = 0;
320 | knownRegions = (
321 | en,
322 | Base,
323 | );
324 | mainGroup = 83CBB9F61A601CBA00E9B192;
325 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
326 | projectDirPath = "";
327 | projectRoot = "";
328 | targets = (
329 | 13B07F861A680F5B00A75B9A /* ReactNavigationTVDemo */,
330 | 00E356ED1AD99517003FC87E /* ReactNavigationTVDemoTests */,
331 | 2D02E47A1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS */,
332 | 2D02E48F1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOSTests */,
333 | );
334 | };
335 | /* End PBXProject section */
336 |
337 | /* Begin PBXResourcesBuildPhase section */
338 | 00E356EC1AD99517003FC87E /* Resources */ = {
339 | isa = PBXResourcesBuildPhase;
340 | buildActionMask = 2147483647;
341 | files = (
342 | );
343 | runOnlyForDeploymentPostprocessing = 0;
344 | };
345 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
346 | isa = PBXResourcesBuildPhase;
347 | buildActionMask = 2147483647;
348 | files = (
349 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
350 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
351 | );
352 | runOnlyForDeploymentPostprocessing = 0;
353 | };
354 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
355 | isa = PBXResourcesBuildPhase;
356 | buildActionMask = 2147483647;
357 | files = (
358 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
359 | );
360 | runOnlyForDeploymentPostprocessing = 0;
361 | };
362 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
363 | isa = PBXResourcesBuildPhase;
364 | buildActionMask = 2147483647;
365 | files = (
366 | );
367 | runOnlyForDeploymentPostprocessing = 0;
368 | };
369 | /* End PBXResourcesBuildPhase section */
370 |
371 | /* Begin PBXShellScriptBuildPhase section */
372 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
373 | isa = PBXShellScriptBuildPhase;
374 | buildActionMask = 2147483647;
375 | files = (
376 | );
377 | inputPaths = (
378 | );
379 | name = "Bundle React Native code and images";
380 | outputPaths = (
381 | );
382 | runOnlyForDeploymentPostprocessing = 0;
383 | shellPath = /bin/sh;
384 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
385 | };
386 | 02E1350E1BCD1E82F3FE9A53 /* [CP] Check Pods Manifest.lock */ = {
387 | isa = PBXShellScriptBuildPhase;
388 | buildActionMask = 2147483647;
389 | files = (
390 | );
391 | inputFileListPaths = (
392 | );
393 | inputPaths = (
394 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
395 | "${PODS_ROOT}/Manifest.lock",
396 | );
397 | name = "[CP] Check Pods Manifest.lock";
398 | outputFileListPaths = (
399 | );
400 | outputPaths = (
401 | "$(DERIVED_FILE_DIR)/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests-checkManifestLockResult.txt",
402 | );
403 | runOnlyForDeploymentPostprocessing = 0;
404 | shellPath = /bin/sh;
405 | 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";
406 | showEnvVarsInLog = 0;
407 | };
408 | 184441B01F145C0E7801D4FE /* [CP] Check Pods Manifest.lock */ = {
409 | isa = PBXShellScriptBuildPhase;
410 | buildActionMask = 2147483647;
411 | files = (
412 | );
413 | inputFileListPaths = (
414 | );
415 | inputPaths = (
416 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
417 | "${PODS_ROOT}/Manifest.lock",
418 | );
419 | name = "[CP] Check Pods Manifest.lock";
420 | outputFileListPaths = (
421 | );
422 | outputPaths = (
423 | "$(DERIVED_FILE_DIR)/Pods-ReactNavigationTVDemo-tvOS-checkManifestLockResult.txt",
424 | );
425 | runOnlyForDeploymentPostprocessing = 0;
426 | shellPath = /bin/sh;
427 | 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";
428 | showEnvVarsInLog = 0;
429 | };
430 | 1B017DAF27C64489C8C3AE04 /* [CP] Copy Pods Resources */ = {
431 | isa = PBXShellScriptBuildPhase;
432 | buildActionMask = 2147483647;
433 | files = (
434 | );
435 | inputPaths = (
436 | "${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-tvOS/Pods-ReactNavigationTVDemo-tvOS-resources.sh",
437 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core-tvOS/AccessibilityResources.bundle",
438 | );
439 | name = "[CP] Copy Pods Resources";
440 | outputPaths = (
441 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
442 | );
443 | runOnlyForDeploymentPostprocessing = 0;
444 | shellPath = /bin/sh;
445 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-tvOS/Pods-ReactNavigationTVDemo-tvOS-resources.sh\"\n";
446 | showEnvVarsInLog = 0;
447 | };
448 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
449 | isa = PBXShellScriptBuildPhase;
450 | buildActionMask = 2147483647;
451 | files = (
452 | );
453 | inputPaths = (
454 | );
455 | name = "Bundle React Native Code And Images";
456 | outputPaths = (
457 | );
458 | runOnlyForDeploymentPostprocessing = 0;
459 | shellPath = /bin/sh;
460 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
461 | };
462 | 31EAEC899C92AD971BAEBFC3 /* [CP] Check Pods Manifest.lock */ = {
463 | isa = PBXShellScriptBuildPhase;
464 | buildActionMask = 2147483647;
465 | files = (
466 | );
467 | inputFileListPaths = (
468 | );
469 | inputPaths = (
470 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
471 | "${PODS_ROOT}/Manifest.lock",
472 | );
473 | name = "[CP] Check Pods Manifest.lock";
474 | outputFileListPaths = (
475 | );
476 | outputPaths = (
477 | "$(DERIVED_FILE_DIR)/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests-checkManifestLockResult.txt",
478 | );
479 | runOnlyForDeploymentPostprocessing = 0;
480 | shellPath = /bin/sh;
481 | 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";
482 | showEnvVarsInLog = 0;
483 | };
484 | 695A7A74B7E9CA8BA091C90A /* [CP] Copy Pods Resources */ = {
485 | isa = PBXShellScriptBuildPhase;
486 | buildActionMask = 2147483647;
487 | files = (
488 | );
489 | inputPaths = (
490 | "${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests-resources.sh",
491 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core-iOS/AccessibilityResources.bundle",
492 | );
493 | name = "[CP] Copy Pods Resources";
494 | outputPaths = (
495 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
496 | );
497 | runOnlyForDeploymentPostprocessing = 0;
498 | shellPath = /bin/sh;
499 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests/Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests-resources.sh\"\n";
500 | showEnvVarsInLog = 0;
501 | };
502 | 809633D2CEF6E741DF642211 /* [CP] Copy Pods Resources */ = {
503 | isa = PBXShellScriptBuildPhase;
504 | buildActionMask = 2147483647;
505 | files = (
506 | );
507 | inputPaths = (
508 | "${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests-resources.sh",
509 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core-tvOS/AccessibilityResources.bundle",
510 | );
511 | name = "[CP] Copy Pods Resources";
512 | outputPaths = (
513 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
514 | );
515 | runOnlyForDeploymentPostprocessing = 0;
516 | shellPath = /bin/sh;
517 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests/Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-tvOSTests-resources.sh\"\n";
518 | showEnvVarsInLog = 0;
519 | };
520 | 8BE3984EB96BD8DC9917C7F0 /* [CP] Check Pods Manifest.lock */ = {
521 | isa = PBXShellScriptBuildPhase;
522 | buildActionMask = 2147483647;
523 | files = (
524 | );
525 | inputFileListPaths = (
526 | );
527 | inputPaths = (
528 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
529 | "${PODS_ROOT}/Manifest.lock",
530 | );
531 | name = "[CP] Check Pods Manifest.lock";
532 | outputFileListPaths = (
533 | );
534 | outputPaths = (
535 | "$(DERIVED_FILE_DIR)/Pods-ReactNavigationTVDemo-checkManifestLockResult.txt",
536 | );
537 | runOnlyForDeploymentPostprocessing = 0;
538 | shellPath = /bin/sh;
539 | 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";
540 | showEnvVarsInLog = 0;
541 | };
542 | F8C996F52EE722917BC2B2E7 /* [CP] Copy Pods Resources */ = {
543 | isa = PBXShellScriptBuildPhase;
544 | buildActionMask = 2147483647;
545 | files = (
546 | );
547 | inputPaths = (
548 | "${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo/Pods-ReactNavigationTVDemo-resources.sh",
549 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core-iOS/AccessibilityResources.bundle",
550 | );
551 | name = "[CP] Copy Pods Resources";
552 | outputPaths = (
553 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
554 | );
555 | runOnlyForDeploymentPostprocessing = 0;
556 | shellPath = /bin/sh;
557 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNavigationTVDemo/Pods-ReactNavigationTVDemo-resources.sh\"\n";
558 | showEnvVarsInLog = 0;
559 | };
560 | FD10A7F022414F080027D42C /* Start Packager */ = {
561 | isa = PBXShellScriptBuildPhase;
562 | buildActionMask = 2147483647;
563 | files = (
564 | );
565 | inputFileListPaths = (
566 | );
567 | inputPaths = (
568 | );
569 | name = "Start Packager";
570 | outputFileListPaths = (
571 | );
572 | outputPaths = (
573 | );
574 | runOnlyForDeploymentPostprocessing = 0;
575 | shellPath = /bin/sh;
576 | 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";
577 | showEnvVarsInLog = 0;
578 | };
579 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
580 | isa = PBXShellScriptBuildPhase;
581 | buildActionMask = 2147483647;
582 | files = (
583 | );
584 | inputFileListPaths = (
585 | );
586 | inputPaths = (
587 | );
588 | name = "Start Packager";
589 | outputFileListPaths = (
590 | );
591 | outputPaths = (
592 | );
593 | runOnlyForDeploymentPostprocessing = 0;
594 | shellPath = /bin/sh;
595 | 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";
596 | showEnvVarsInLog = 0;
597 | };
598 | /* End PBXShellScriptBuildPhase section */
599 |
600 | /* Begin PBXSourcesBuildPhase section */
601 | 00E356EA1AD99517003FC87E /* Sources */ = {
602 | isa = PBXSourcesBuildPhase;
603 | buildActionMask = 2147483647;
604 | files = (
605 | 00E356F31AD99517003FC87E /* ReactNavigationTVDemoTests.m in Sources */,
606 | );
607 | runOnlyForDeploymentPostprocessing = 0;
608 | };
609 | 13B07F871A680F5B00A75B9A /* Sources */ = {
610 | isa = PBXSourcesBuildPhase;
611 | buildActionMask = 2147483647;
612 | files = (
613 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
614 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
615 | );
616 | runOnlyForDeploymentPostprocessing = 0;
617 | };
618 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
619 | isa = PBXSourcesBuildPhase;
620 | buildActionMask = 2147483647;
621 | files = (
622 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
623 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
624 | );
625 | runOnlyForDeploymentPostprocessing = 0;
626 | };
627 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
628 | isa = PBXSourcesBuildPhase;
629 | buildActionMask = 2147483647;
630 | files = (
631 | 2DCD954D1E0B4F2C00145EB5 /* ReactNavigationTVDemoTests.m in Sources */,
632 | );
633 | runOnlyForDeploymentPostprocessing = 0;
634 | };
635 | /* End PBXSourcesBuildPhase section */
636 |
637 | /* Begin PBXTargetDependency section */
638 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
639 | isa = PBXTargetDependency;
640 | target = 13B07F861A680F5B00A75B9A /* ReactNavigationTVDemo */;
641 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
642 | };
643 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
644 | isa = PBXTargetDependency;
645 | target = 2D02E47A1E0B4A5D006451C7 /* ReactNavigationTVDemo-tvOS */;
646 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
647 | };
648 | /* End PBXTargetDependency section */
649 |
650 | /* Begin PBXVariantGroup section */
651 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
652 | isa = PBXVariantGroup;
653 | children = (
654 | 13B07FB21A68108700A75B9A /* Base */,
655 | );
656 | name = LaunchScreen.xib;
657 | path = ReactNavigationTVDemo;
658 | sourceTree = "";
659 | };
660 | /* End PBXVariantGroup section */
661 |
662 | /* Begin XCBuildConfiguration section */
663 | 00E356F61AD99517003FC87E /* Debug */ = {
664 | isa = XCBuildConfiguration;
665 | baseConfigurationReference = 25142A9732BC6D9FE9B747B8 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.debug.xcconfig */;
666 | buildSettings = {
667 | BUNDLE_LOADER = "$(TEST_HOST)";
668 | GCC_PREPROCESSOR_DEFINITIONS = (
669 | "DEBUG=1",
670 | "FB_SONARKIT_ENABLED=1",
671 | "$(inherited)",
672 | );
673 | INFOPLIST_FILE = ReactNavigationTVDemoTests/Info.plist;
674 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
675 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
676 | OTHER_LDFLAGS = (
677 | "-ObjC",
678 | "-lc++",
679 | "$(inherited)",
680 | );
681 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
682 | PRODUCT_NAME = "$(TARGET_NAME)";
683 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNavigationTVDemo.app/ReactNavigationTVDemo";
684 | };
685 | name = Debug;
686 | };
687 | 00E356F71AD99517003FC87E /* Release */ = {
688 | isa = XCBuildConfiguration;
689 | baseConfigurationReference = 9BBF8E5D38C9962E229A2DF3 /* Pods-ReactNavigationTVDemo-ReactNavigationTVDemoTests.release.xcconfig */;
690 | buildSettings = {
691 | BUNDLE_LOADER = "$(TEST_HOST)";
692 | COPY_PHASE_STRIP = NO;
693 | INFOPLIST_FILE = ReactNavigationTVDemoTests/Info.plist;
694 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
695 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
696 | OTHER_LDFLAGS = (
697 | "-ObjC",
698 | "-lc++",
699 | "$(inherited)",
700 | );
701 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
702 | PRODUCT_NAME = "$(TARGET_NAME)";
703 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNavigationTVDemo.app/ReactNavigationTVDemo";
704 | };
705 | name = Release;
706 | };
707 | 13B07F941A680F5B00A75B9A /* Debug */ = {
708 | isa = XCBuildConfiguration;
709 | baseConfigurationReference = 637414D853E7B99F2BD0CB28 /* Pods-ReactNavigationTVDemo.debug.xcconfig */;
710 | buildSettings = {
711 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
712 | CLANG_ENABLE_MODULES = YES;
713 | CURRENT_PROJECT_VERSION = 1;
714 | ENABLE_BITCODE = NO;
715 | GCC_PREPROCESSOR_DEFINITIONS = (
716 | "$(inherited)",
717 | "FB_SONARKIT_ENABLED=1",
718 | );
719 | INFOPLIST_FILE = ReactNavigationTVDemo/Info.plist;
720 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
721 | OTHER_LDFLAGS = (
722 | "$(inherited)",
723 | "-ObjC",
724 | "-lc++",
725 | );
726 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
727 | PRODUCT_NAME = ReactNavigationTVDemo;
728 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
729 | SWIFT_VERSION = 5.0;
730 | VERSIONING_SYSTEM = "apple-generic";
731 | };
732 | name = Debug;
733 | };
734 | 13B07F951A680F5B00A75B9A /* Release */ = {
735 | isa = XCBuildConfiguration;
736 | baseConfigurationReference = 2CF939F170895987AAECDE0B /* Pods-ReactNavigationTVDemo.release.xcconfig */;
737 | buildSettings = {
738 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
739 | CLANG_ENABLE_MODULES = YES;
740 | CURRENT_PROJECT_VERSION = 1;
741 | INFOPLIST_FILE = ReactNavigationTVDemo/Info.plist;
742 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
743 | OTHER_LDFLAGS = (
744 | "$(inherited)",
745 | "-ObjC",
746 | "-lc++",
747 | );
748 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
749 | PRODUCT_NAME = ReactNavigationTVDemo;
750 | SWIFT_VERSION = 5.0;
751 | VERSIONING_SYSTEM = "apple-generic";
752 | };
753 | name = Release;
754 | };
755 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
756 | isa = XCBuildConfiguration;
757 | baseConfigurationReference = 08E767D6B986EDEFFA499248 /* Pods-ReactNavigationTVDemo-tvOS.debug.xcconfig */;
758 | buildSettings = {
759 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
760 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
761 | CLANG_ANALYZER_NONNULL = YES;
762 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
763 | CLANG_WARN_INFINITE_RECURSION = YES;
764 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
765 | DEBUG_INFORMATION_FORMAT = dwarf;
766 | ENABLE_TESTABILITY = YES;
767 | GCC_NO_COMMON_BLOCKS = YES;
768 | GCC_PREPROCESSOR_DEFINITIONS = (
769 | "DEBUG=1",
770 | "FB_SONARKIT_ENABLED=1",
771 | "$(inherited)",
772 | );
773 | INFOPLIST_FILE = "ReactNavigationTVDemo-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.ReactNavigationTVDemo-tvOS";
781 | PRODUCT_NAME = "$(TARGET_NAME)";
782 | SDKROOT = appletvos;
783 | TARGETED_DEVICE_FAMILY = 3;
784 | TVOS_DEPLOYMENT_TARGET = 9.2;
785 | };
786 | name = Debug;
787 | };
788 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
789 | isa = XCBuildConfiguration;
790 | baseConfigurationReference = 9E982CD627BEAFCF7E034755 /* Pods-ReactNavigationTVDemo-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 = "ReactNavigationTVDemo-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.ReactNavigationTVDemo-tvOS";
809 | PRODUCT_NAME = "$(TARGET_NAME)";
810 | SDKROOT = appletvos;
811 | TARGETED_DEVICE_FAMILY = 3;
812 | TVOS_DEPLOYMENT_TARGET = 9.2;
813 | };
814 | name = Release;
815 | };
816 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
817 | isa = XCBuildConfiguration;
818 | baseConfigurationReference = 0A2C25AEF4CBEE68666B2651 /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-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 = "ReactNavigationTVDemo-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.ReactNavigationTVDemo-tvOSTests";
836 | PRODUCT_NAME = "$(TARGET_NAME)";
837 | SDKROOT = appletvos;
838 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNavigationTVDemo-tvOS.app/ReactNavigationTVDemo-tvOS";
839 | TVOS_DEPLOYMENT_TARGET = 10.1;
840 | };
841 | name = Debug;
842 | };
843 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
844 | isa = XCBuildConfiguration;
845 | baseConfigurationReference = B93191FCD5743EFECD81C93E /* Pods-ReactNavigationTVDemo-tvOS-ReactNavigationTVDemo-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 = "ReactNavigationTVDemo-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.ReactNavigationTVDemo-tvOSTests";
863 | PRODUCT_NAME = "$(TARGET_NAME)";
864 | SDKROOT = appletvos;
865 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNavigationTVDemo-tvOS.app/ReactNavigationTVDemo-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 = 9.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 = 9.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 "ReactNavigationTVDemoTests" */ = {
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 "ReactNavigationTVDemo" */ = {
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 "ReactNavigationTVDemo-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 "ReactNavigationTVDemo-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 "ReactNavigationTVDemo" */ = {
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 |
--------------------------------------------------------------------------------