packages = new PackageList(this).getPackages();
27 | // Packages that cannot be autolinked yet can be added manually here, for example:
28 | // packages.add(new MyReactNativePackage());
29 | return packages;
30 | }
31 |
32 | @Override
33 | protected String getJSMainModuleName() {
34 | return "index";
35 | }
36 | };
37 |
38 | @Override
39 | public ReactNativeHost getReactNativeHost() {
40 | return mReactNativeHost;
41 | }
42 |
43 | @Override
44 | public void onCreate() {
45 | super.onCreate();
46 | SoLoader.init(this, /* native exopackage */ false);
47 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
48 | }
49 |
50 | /**
51 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
52 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
53 | *
54 | * @param context
55 | * @param reactInstanceManager
56 | */
57 | private static void initializeFlipper(
58 | Context context, ReactInstanceManager reactInstanceManager) {
59 | if (BuildConfig.DEBUG) {
60 | try {
61 | /*
62 | We use reflection here to pick up the class that initializes Flipper,
63 | since Flipper library is not available in release mode
64 | */
65 | Class> aClass = Class.forName("com.rn.ReactNativeFlipper");
66 | aClass
67 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
68 | .invoke(null, context, reactInstanceManager);
69 | } catch (ClassNotFoundException e) {
70 | e.printStackTrace();
71 | } catch (NoSuchMethodException e) {
72 | e.printStackTrace();
73 | } catch (IllegalAccessException e) {
74 | e.printStackTrace();
75 | } catch (InvocationTargetException e) {
76 | e.printStackTrace();
77 | }
78 | }
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/components/ManageTeam.js:
--------------------------------------------------------------------------------
1 | import React, { useState, useEffect } from "react";
2 | import { View, Button, TextInput, Alert } from "react-native";
3 | import styles from "../stylesheet";
4 | import { Text, ListItem } from "react-native-elements";
5 |
6 | import { useAuth } from "../providers/AuthProvider";
7 |
8 | export function ManageTeam() {
9 | const { user } = useAuth();
10 | const [newTeamMember, setNewTeamMember] = useState(null);
11 | const [teamMemberList, setTeamMemberList] = useState([]);
12 |
13 | // getTeam calls the backend function getMyTeamMembers to retrieve the
14 | // team members of the logged in user's project
15 | const getTeam = async () => {
16 | try {
17 | const teamMembers = await user.functions.getMyTeamMembers([]);
18 | setTeamMemberList(teamMembers);
19 | } catch (err) {
20 | Alert.alert("An error occurred while getting team members", err);
21 | }
22 | };
23 |
24 | // addTeamMember calls the backend function addTeamMember to add a
25 | // team member to the logged in user's project
26 | const addTeamMember = async () => {
27 | try {
28 | await user.functions.addTeamMember(newTeamMember);
29 | getTeam();
30 | } catch (err) {
31 | Alert.alert("An error occurred while adding a team member", err.message);
32 | }
33 | };
34 |
35 | // removeTeamMember calls the backend function removeTeamMember to remove a
36 | // team member from the logged in user's project
37 | const removeTeamMember = async (email) => {
38 | try {
39 | await user.functions.removeTeamMember(email);
40 | getTeam();
41 | } catch (err) {
42 | Alert.alert("An error occurred while removing a team member", err);
43 | }
44 | };
45 |
46 | const openDeleteDialogue = (member) => {
47 | Alert.alert("Remove the following member from your team?", member.name, [
48 | {
49 | text: "Remove",
50 | onPress: () => {
51 | removeTeamMember(member.name);
52 | },
53 | },
54 | { text: "cancel", style: "cancel" },
55 | ]);
56 | };
57 |
58 | // Load the team when the component is first mounted or when the user changes.
59 | useEffect(() => {
60 | getTeam();
61 | }, [user]);
62 |
63 | return (
64 |
65 |
66 | My Team
67 |
68 | {teamMemberList.map((member) => (
69 | openDeleteDialogue(member)}
71 | bottomDivider
72 | key={member.name}
73 | >
74 |
75 |
76 | {member.name}
77 |
78 |
79 |
80 | ))}
81 |
82 | Add member:
83 |
84 | setNewTeamMember(text)}
86 | value={newTeamMember}
87 | placeholder="new team member username"
88 | style={styles.addTeamMemberInput}
89 | autoCapitalize="none"
90 | />
91 |
92 |
94 | );
95 | }
96 |
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto init
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto init
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :init
68 | @rem Get command-line arguments, handling Windows variants
69 |
70 | if not "%OS%" == "Windows_NT" goto win9xME_args
71 |
72 | :win9xME_args
73 | @rem Slurp the command line arguments.
74 | set CMD_LINE_ARGS=
75 | set _SKIP=2
76 |
77 | :win9xME_args_slurp
78 | if "x%~1" == "x" goto execute
79 |
80 | set CMD_LINE_ARGS=%*
81 |
82 | :execute
83 | @rem Setup the command line
84 |
85 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
86 |
87 | @rem Execute Gradle
88 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
89 |
90 | :end
91 | @rem End local scope for the variables with windows NT shell
92 | if "%ERRORLEVEL%"=="0" goto mainEnd
93 |
94 | :fail
95 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
96 | rem the _cmd.exe /c_ return code!
97 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
98 | exit /b 1
99 |
100 | :mainEnd
101 | if "%OS%"=="Windows_NT" endlocal
102 |
103 | :omega
104 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/rn/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.rn;
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/rn.xcodeproj/xcshareddata/xcschemes/rn.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/rn.xcodeproj/xcshareddata/xcschemes/rn-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 |
--------------------------------------------------------------------------------
/providers/AuthProvider.js:
--------------------------------------------------------------------------------
1 | import React, { useContext, useState, useEffect, useRef } from "react";
2 | import Realm from "realm";
3 | import app from "../realmApp";
4 |
5 | // Create a new Context object that will be provided to descendants of
6 | // the AuthProvider.
7 | const AuthContext = React.createContext(null);
8 |
9 | // The AuthProvider is responsible for user management and provides the
10 | // AuthContext value to its descendants. Components under an AuthProvider can
11 | // use the useAuth() hook to access the auth value.
12 | const AuthProvider = ({ children }) => {
13 | const [user, setUser] = useState(app.currentUser);
14 | const realmRef = useRef(null);
15 | const [projectData, setProjectData] = useState([]);
16 |
17 | useEffect(() => {
18 | if (!user) {
19 | return;
20 | }
21 |
22 | // The current user always has their own project, so we don't need
23 | // to wait for the user object to load before displaying that project.
24 | const myProject = { name: "My Project", partition: `project=${user.id}` };
25 | setProjectData([myProject]);
26 |
27 | const config = {
28 | sync: {
29 | user,
30 | partitionValue: `user=${user.id}`,
31 | },
32 | };
33 |
34 | // Open a realm with the logged in user's partition value in order
35 | // to get the projects that the logged in user is a member of
36 | Realm.open(config).then((userRealm) => {
37 | realmRef.current = userRealm;
38 | const users = userRealm.objects("User");
39 |
40 | users.addListener(() => {
41 | // The user custom data object may not have been loaded on
42 | // the server side yet when a user is first registered.
43 | if (users.length === 0) {
44 | setProjectData([myProject]);
45 | } else {
46 | const { memberOf } = users[0];
47 | setProjectData([...memberOf]);
48 | }
49 | });
50 | });
51 |
52 | return () => {
53 | // cleanup function
54 | const userRealm = realmRef.current;
55 | if (userRealm) {
56 | userRealm.close();
57 | realmRef.current = null;
58 | setProjectData([]); // set project data to an empty array (this prevents the array from staying in state on logout)
59 | }
60 | };
61 | }, [user]);
62 |
63 | // The signIn function takes an email and password and uses the
64 | // emailPassword authentication provider to log in.
65 | const signIn = async (email, password) => {
66 | const creds = Realm.Credentials.emailPassword(email, password);
67 | const newUser = await app.logIn(creds);
68 | setUser(newUser);
69 | };
70 |
71 | // The signUp function takes an email and password and uses the
72 | // emailPassword authentication provider to register the user.
73 | const signUp = async (email, password) => {
74 | await app.emailPasswordAuth.registerUser({ email, password });
75 | };
76 |
77 | // The signOut function calls the logOut function on the currently
78 | // logged in user
79 | const signOut = () => {
80 | if (user == null) {
81 | console.warn("Not logged in, can't log out!");
82 | return;
83 | }
84 | user.logOut();
85 | setUser(null);
86 | };
87 |
88 | return (
89 |
98 | {children}
99 |
100 | );
101 | };
102 |
103 | // The useAuth hook can be used by components under an AuthProvider to
104 | // access the auth context value.
105 | const useAuth = () => {
106 | const auth = useContext(AuthContext);
107 | if (auth == null) {
108 | throw new Error("useAuth() called outside of a AuthProvider?");
109 | }
110 | return auth;
111 | };
112 |
113 | export { AuthProvider, useAuth };
114 |
--------------------------------------------------------------------------------
/providers/TasksProvider.js:
--------------------------------------------------------------------------------
1 | import React, { useContext, useState, useEffect, useRef } from "react";
2 | import Realm from "realm";
3 | import { Task } from "../schemas";
4 | import { useAuth } from "./AuthProvider";
5 |
6 | const TasksContext = React.createContext(null);
7 |
8 | const TasksProvider = ({ children, projectPartition }) => {
9 | const [tasks, setTasks] = useState([]);
10 | const { user } = useAuth();
11 |
12 | // Use a Ref to store the realm rather than the state because it is not
13 | // directly rendered, so updating it should not trigger a re-render as using
14 | // state would.
15 | const realmRef = useRef(null);
16 |
17 | useEffect(() => {
18 | // Enables offline-first: opens a local realm immediately without waiting
19 | // for the download of a synchronized realm to be completed.
20 | const OpenRealmBehaviorConfiguration = {
21 | type: 'openImmediately',
22 | };
23 | const config = {
24 | schema: [Task.schema],
25 | sync: {
26 | user: user,
27 | partitionValue: projectPartition,
28 | newRealmFileBehavior: OpenRealmBehaviorConfiguration,
29 | existingRealmFileBehavior: OpenRealmBehaviorConfiguration,
30 | },
31 | };
32 | // open a realm for this particular project
33 | Realm.open(config).then((projectRealm) => {
34 | realmRef.current = projectRealm;
35 |
36 | const syncTasks = projectRealm.objects("Task");
37 | let sortedTasks = syncTasks.sorted("name");
38 | setTasks([...sortedTasks]);
39 | sortedTasks.addListener(() => {
40 | setTasks([...sortedTasks]);
41 | });
42 | });
43 |
44 | return () => {
45 | // cleanup function
46 | const projectRealm = realmRef.current;
47 | if (projectRealm) {
48 | projectRealm.close();
49 | realmRef.current = null;
50 | setTasks([]);
51 | }
52 | };
53 | }, [user, projectPartition]);
54 |
55 | const createTask = (newTaskName) => {
56 | const projectRealm = realmRef.current;
57 | projectRealm.write(() => {
58 | // Create a new task in the same partition -- that is, in the same project.
59 | projectRealm.create(
60 | "Task",
61 | new Task({
62 | name: newTaskName || "New Task",
63 | partition: projectPartition,
64 | })
65 | );
66 | });
67 | };
68 |
69 | const setTaskStatus = (task, status) => {
70 | // One advantage of centralizing the realm functionality in this provider is
71 | // that we can check to make sure a valid status was passed in here.
72 | if (
73 | ![
74 | Task.STATUS_OPEN,
75 | Task.STATUS_IN_PROGRESS,
76 | Task.STATUS_COMPLETE,
77 | ].includes(status)
78 | ) {
79 | throw new Error(`Invalid status: ${status}`);
80 | }
81 | const projectRealm = realmRef.current;
82 |
83 | projectRealm.write(() => {
84 | task.status = status;
85 | });
86 | };
87 |
88 | // Define the function for deleting a task.
89 | const deleteTask = (task) => {
90 | const projectRealm = realmRef.current;
91 | projectRealm.write(() => {
92 | projectRealm.delete(task);
93 | setTasks([...projectRealm.objects("Task").sorted("name")]);
94 | });
95 | };
96 |
97 | // Render the children within the TaskContext's provider. The value contains
98 | // everything that should be made available to descendants that use the
99 | // useTasks hook.
100 | return (
101 |
109 | {children}
110 |
111 | );
112 | };
113 |
114 | // The useTasks hook can be used by any descendant of the TasksProvider. It
115 | // provides the tasks of the TasksProvider's project and various functions to
116 | // create, update, and delete the tasks in that project.
117 | const useTasks = () => {
118 | const task = useContext(TasksContext);
119 | if (task == null) {
120 | throw new Error("useTasks() called outside of a TasksProvider?"); // an alert is not placed because this is an error for the developer not the user
121 | }
122 | return task;
123 | };
124 |
125 | export { TasksProvider, useTasks };
126 |
--------------------------------------------------------------------------------
/ios/rn/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
25 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 | # Determine the Java command to use to start the JVM.
86 | if [ -n "$JAVA_HOME" ] ; then
87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 | # IBM's JDK on AIX uses strange locations for the executables
89 | JAVACMD="$JAVA_HOME/jre/sh/java"
90 | else
91 | JAVACMD="$JAVA_HOME/bin/java"
92 | fi
93 | if [ ! -x "$JAVACMD" ] ; then
94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95 |
96 | Please set the JAVA_HOME variable in your environment to match the
97 | location of your Java installation."
98 | fi
99 | else
100 | JAVACMD="java"
101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102 |
103 | Please set the JAVA_HOME variable in your environment to match the
104 | location of your Java installation."
105 | fi
106 |
107 | # Increase the maximum file descriptors if we can.
108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 | MAX_FD_LIMIT=`ulimit -H -n`
110 | if [ $? -eq 0 ] ; then
111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 | MAX_FD="$MAX_FD_LIMIT"
113 | fi
114 | ulimit -n $MAX_FD
115 | if [ $? -ne 0 ] ; then
116 | warn "Could not set maximum file descriptor limit: $MAX_FD"
117 | fi
118 | else
119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 | fi
121 | fi
122 |
123 | # For Darwin, add options to specify how the application appears in the dock
124 | if $darwin; then
125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 | fi
127 |
128 | # For Cygwin or MSYS, switch paths to Windows format before running java
129 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132 | JAVACMD=`cygpath --unix "$JAVACMD"`
133 |
134 | # We build the pattern for arguments to be converted via cygpath
135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
136 | SEP=""
137 | for dir in $ROOTDIRSRAW ; do
138 | ROOTDIRS="$ROOTDIRS$SEP$dir"
139 | SEP="|"
140 | done
141 | OURCYGPATTERN="(^($ROOTDIRS))"
142 | # Add a user-defined pattern to the cygpath arguments
143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
145 | fi
146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
147 | i=0
148 | for arg in "$@" ; do
149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
151 |
152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
154 | else
155 | eval `echo args$i`="\"$arg\""
156 | fi
157 | i=`expr $i + 1`
158 | done
159 | case $i in
160 | 0) set -- ;;
161 | 1) set -- "$args0" ;;
162 | 2) set -- "$args0" "$args1" ;;
163 | 3) set -- "$args0" "$args1" "$args2" ;;
164 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
165 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
166 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
167 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
168 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
169 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
170 | esac
171 | fi
172 |
173 | # Escape application args
174 | save () {
175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
176 | echo " "
177 | }
178 | APP_ARGS=`save "$@"`
179 |
180 | # Collect all arguments for the java command, following the shell quoting and substitution rules
181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
182 |
183 | exec "$JAVACMD" "$@"
184 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | project.ext.react = [
81 | enableHermes: false, // clean and rebuild if changing
82 | ]
83 |
84 | apply from: "../../node_modules/react-native/react.gradle"
85 |
86 | /**
87 | * Set this to true to create two separate APKs instead of one:
88 | * - An APK that only works on ARM devices
89 | * - An APK that only works on x86 devices
90 | * The advantage is the size of the APK is reduced by about 4MB.
91 | * Upload all the APKs to the Play Store and people will download
92 | * the correct one based on the CPU architecture of their device.
93 | */
94 | def enableSeparateBuildPerCPUArchitecture = false
95 |
96 | /**
97 | * Run Proguard to shrink the Java bytecode in release builds.
98 | */
99 | def enableProguardInReleaseBuilds = false
100 |
101 | /**
102 | * The preferred build flavor of JavaScriptCore.
103 | *
104 | * For example, to use the international variant, you can use:
105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106 | *
107 | * The international variant includes ICU i18n library and necessary data
108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109 | * give correct results when using with locales other than en-US. Note that
110 | * this variant is about 6MiB larger per architecture than default.
111 | */
112 | def jscFlavor = 'org.webkit:android-jsc:+'
113 |
114 | /**
115 | * Whether to enable the Hermes VM.
116 | *
117 | * This should be set on project.ext.react and mirrored here. If it is not set
118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119 | * and the benefits of using Hermes will therefore be sharply reduced.
120 | */
121 | def enableHermes = project.ext.react.get("enableHermes", false);
122 |
123 | android {
124 | compileSdkVersion rootProject.ext.compileSdkVersion
125 |
126 | compileOptions {
127 | sourceCompatibility JavaVersion.VERSION_1_8
128 | targetCompatibility JavaVersion.VERSION_1_8
129 | }
130 |
131 | defaultConfig {
132 | applicationId "com.rn"
133 | minSdkVersion rootProject.ext.minSdkVersion
134 | targetSdkVersion rootProject.ext.targetSdkVersion
135 | versionCode 1
136 | versionName "1.0"
137 | }
138 | splits {
139 | abi {
140 | reset()
141 | enable enableSeparateBuildPerCPUArchitecture
142 | universalApk false // If true, also generate a universal APK
143 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
144 | }
145 | }
146 | signingConfigs {
147 | debug {
148 | storeFile file('debug.keystore')
149 | storePassword 'android'
150 | keyAlias 'androiddebugkey'
151 | keyPassword 'android'
152 | }
153 | }
154 | buildTypes {
155 | debug {
156 | signingConfig signingConfigs.debug
157 | }
158 | release {
159 | // Caution! In production, you need to generate your own keystore file.
160 | // see https://reactnative.dev/docs/signed-apk-android.
161 | signingConfig signingConfigs.debug
162 | minifyEnabled enableProguardInReleaseBuilds
163 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
164 | }
165 | }
166 |
167 | // applicationVariants are e.g. debug, release
168 | applicationVariants.all { variant ->
169 | variant.outputs.each { output ->
170 | // For each separate APK per architecture, set a unique version code as described here:
171 | // https://developer.android.com/studio/build/configure-apk-splits.html
172 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
173 | def abi = output.getFilter(OutputFile.ABI)
174 | if (abi != null) { // null for the universal-debug, universal-release variants
175 | output.versionCodeOverride =
176 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
177 | }
178 |
179 | }
180 | }
181 | }
182 |
183 | dependencies {
184 | implementation fileTree(dir: "libs", include: ["*.jar"])
185 | //noinspection GradleDynamicVersion
186 | implementation "com.facebook.react:react-native:+" // From node_modules
187 |
188 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
189 |
190 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
191 | exclude group:'com.facebook.fbjni'
192 | }
193 |
194 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
195 | exclude group:'com.facebook.flipper'
196 | exclude group:'com.squareup.okhttp3', module:'okhttp'
197 | }
198 |
199 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
200 | exclude group:'com.facebook.flipper'
201 | }
202 |
203 | if (enableHermes) {
204 | def hermesPath = "../../node_modules/hermes-engine/android/";
205 | debugImplementation files(hermesPath + "hermes-debug.aar")
206 | releaseImplementation files(hermesPath + "hermes-release.aar")
207 | } else {
208 | implementation jscFlavor
209 | }
210 | }
211 |
212 | // Run this once to be able to run the application with BUCK
213 | // puts all compile dependencies into folder libs for BUCK to use
214 | task copyDownloadableDepsToLibs(type: Copy) {
215 | from configurations.compile
216 | into 'libs'
217 | }
218 |
219 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
220 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - DoubleConversion (1.1.6)
4 | - FBLazyVector (0.64.1)
5 | - FBReactNativeSpec (0.64.1):
6 | - RCT-Folly (= 2020.01.13.00)
7 | - RCTRequired (= 0.64.1)
8 | - RCTTypeSafety (= 0.64.1)
9 | - React-Core (= 0.64.1)
10 | - React-jsi (= 0.64.1)
11 | - ReactCommon/turbomodule/core (= 0.64.1)
12 | - GCDWebServer (3.5.4):
13 | - GCDWebServer/Core (= 3.5.4)
14 | - GCDWebServer/Core (3.5.4)
15 | - glog (0.3.5)
16 | - RCT-Folly (2020.01.13.00):
17 | - boost-for-react-native
18 | - DoubleConversion
19 | - glog
20 | - RCT-Folly/Default (= 2020.01.13.00)
21 | - RCT-Folly/Default (2020.01.13.00):
22 | - boost-for-react-native
23 | - DoubleConversion
24 | - glog
25 | - RCTRequired (0.64.1)
26 | - RCTTypeSafety (0.64.1):
27 | - FBLazyVector (= 0.64.1)
28 | - RCT-Folly (= 2020.01.13.00)
29 | - RCTRequired (= 0.64.1)
30 | - React-Core (= 0.64.1)
31 | - React (0.64.1):
32 | - React-Core (= 0.64.1)
33 | - React-Core/DevSupport (= 0.64.1)
34 | - React-Core/RCTWebSocket (= 0.64.1)
35 | - React-RCTActionSheet (= 0.64.1)
36 | - React-RCTAnimation (= 0.64.1)
37 | - React-RCTBlob (= 0.64.1)
38 | - React-RCTImage (= 0.64.1)
39 | - React-RCTLinking (= 0.64.1)
40 | - React-RCTNetwork (= 0.64.1)
41 | - React-RCTSettings (= 0.64.1)
42 | - React-RCTText (= 0.64.1)
43 | - React-RCTVibration (= 0.64.1)
44 | - React-callinvoker (0.64.1)
45 | - React-Core (0.64.1):
46 | - glog
47 | - RCT-Folly (= 2020.01.13.00)
48 | - React-Core/Default (= 0.64.1)
49 | - React-cxxreact (= 0.64.1)
50 | - React-jsi (= 0.64.1)
51 | - React-jsiexecutor (= 0.64.1)
52 | - React-perflogger (= 0.64.1)
53 | - Yoga
54 | - React-Core/CoreModulesHeaders (0.64.1):
55 | - glog
56 | - RCT-Folly (= 2020.01.13.00)
57 | - React-Core/Default
58 | - React-cxxreact (= 0.64.1)
59 | - React-jsi (= 0.64.1)
60 | - React-jsiexecutor (= 0.64.1)
61 | - React-perflogger (= 0.64.1)
62 | - Yoga
63 | - React-Core/Default (0.64.1):
64 | - glog
65 | - RCT-Folly (= 2020.01.13.00)
66 | - React-cxxreact (= 0.64.1)
67 | - React-jsi (= 0.64.1)
68 | - React-jsiexecutor (= 0.64.1)
69 | - React-perflogger (= 0.64.1)
70 | - Yoga
71 | - React-Core/DevSupport (0.64.1):
72 | - glog
73 | - RCT-Folly (= 2020.01.13.00)
74 | - React-Core/Default (= 0.64.1)
75 | - React-Core/RCTWebSocket (= 0.64.1)
76 | - React-cxxreact (= 0.64.1)
77 | - React-jsi (= 0.64.1)
78 | - React-jsiexecutor (= 0.64.1)
79 | - React-jsinspector (= 0.64.1)
80 | - React-perflogger (= 0.64.1)
81 | - Yoga
82 | - React-Core/RCTActionSheetHeaders (0.64.1):
83 | - glog
84 | - RCT-Folly (= 2020.01.13.00)
85 | - React-Core/Default
86 | - React-cxxreact (= 0.64.1)
87 | - React-jsi (= 0.64.1)
88 | - React-jsiexecutor (= 0.64.1)
89 | - React-perflogger (= 0.64.1)
90 | - Yoga
91 | - React-Core/RCTAnimationHeaders (0.64.1):
92 | - glog
93 | - RCT-Folly (= 2020.01.13.00)
94 | - React-Core/Default
95 | - React-cxxreact (= 0.64.1)
96 | - React-jsi (= 0.64.1)
97 | - React-jsiexecutor (= 0.64.1)
98 | - React-perflogger (= 0.64.1)
99 | - Yoga
100 | - React-Core/RCTBlobHeaders (0.64.1):
101 | - glog
102 | - RCT-Folly (= 2020.01.13.00)
103 | - React-Core/Default
104 | - React-cxxreact (= 0.64.1)
105 | - React-jsi (= 0.64.1)
106 | - React-jsiexecutor (= 0.64.1)
107 | - React-perflogger (= 0.64.1)
108 | - Yoga
109 | - React-Core/RCTImageHeaders (0.64.1):
110 | - glog
111 | - RCT-Folly (= 2020.01.13.00)
112 | - React-Core/Default
113 | - React-cxxreact (= 0.64.1)
114 | - React-jsi (= 0.64.1)
115 | - React-jsiexecutor (= 0.64.1)
116 | - React-perflogger (= 0.64.1)
117 | - Yoga
118 | - React-Core/RCTLinkingHeaders (0.64.1):
119 | - glog
120 | - RCT-Folly (= 2020.01.13.00)
121 | - React-Core/Default
122 | - React-cxxreact (= 0.64.1)
123 | - React-jsi (= 0.64.1)
124 | - React-jsiexecutor (= 0.64.1)
125 | - React-perflogger (= 0.64.1)
126 | - Yoga
127 | - React-Core/RCTNetworkHeaders (0.64.1):
128 | - glog
129 | - RCT-Folly (= 2020.01.13.00)
130 | - React-Core/Default
131 | - React-cxxreact (= 0.64.1)
132 | - React-jsi (= 0.64.1)
133 | - React-jsiexecutor (= 0.64.1)
134 | - React-perflogger (= 0.64.1)
135 | - Yoga
136 | - React-Core/RCTSettingsHeaders (0.64.1):
137 | - glog
138 | - RCT-Folly (= 2020.01.13.00)
139 | - React-Core/Default
140 | - React-cxxreact (= 0.64.1)
141 | - React-jsi (= 0.64.1)
142 | - React-jsiexecutor (= 0.64.1)
143 | - React-perflogger (= 0.64.1)
144 | - Yoga
145 | - React-Core/RCTTextHeaders (0.64.1):
146 | - glog
147 | - RCT-Folly (= 2020.01.13.00)
148 | - React-Core/Default
149 | - React-cxxreact (= 0.64.1)
150 | - React-jsi (= 0.64.1)
151 | - React-jsiexecutor (= 0.64.1)
152 | - React-perflogger (= 0.64.1)
153 | - Yoga
154 | - React-Core/RCTVibrationHeaders (0.64.1):
155 | - glog
156 | - RCT-Folly (= 2020.01.13.00)
157 | - React-Core/Default
158 | - React-cxxreact (= 0.64.1)
159 | - React-jsi (= 0.64.1)
160 | - React-jsiexecutor (= 0.64.1)
161 | - React-perflogger (= 0.64.1)
162 | - Yoga
163 | - React-Core/RCTWebSocket (0.64.1):
164 | - glog
165 | - RCT-Folly (= 2020.01.13.00)
166 | - React-Core/Default (= 0.64.1)
167 | - React-cxxreact (= 0.64.1)
168 | - React-jsi (= 0.64.1)
169 | - React-jsiexecutor (= 0.64.1)
170 | - React-perflogger (= 0.64.1)
171 | - Yoga
172 | - React-CoreModules (0.64.1):
173 | - FBReactNativeSpec (= 0.64.1)
174 | - RCT-Folly (= 2020.01.13.00)
175 | - RCTTypeSafety (= 0.64.1)
176 | - React-Core/CoreModulesHeaders (= 0.64.1)
177 | - React-jsi (= 0.64.1)
178 | - React-RCTImage (= 0.64.1)
179 | - ReactCommon/turbomodule/core (= 0.64.1)
180 | - React-cxxreact (0.64.1):
181 | - boost-for-react-native (= 1.63.0)
182 | - DoubleConversion
183 | - glog
184 | - RCT-Folly (= 2020.01.13.00)
185 | - React-callinvoker (= 0.64.1)
186 | - React-jsi (= 0.64.1)
187 | - React-jsinspector (= 0.64.1)
188 | - React-perflogger (= 0.64.1)
189 | - React-runtimeexecutor (= 0.64.1)
190 | - React-jsi (0.64.1):
191 | - boost-for-react-native (= 1.63.0)
192 | - DoubleConversion
193 | - glog
194 | - RCT-Folly (= 2020.01.13.00)
195 | - React-jsi/Default (= 0.64.1)
196 | - React-jsi/Default (0.64.1):
197 | - boost-for-react-native (= 1.63.0)
198 | - DoubleConversion
199 | - glog
200 | - RCT-Folly (= 2020.01.13.00)
201 | - React-jsiexecutor (0.64.1):
202 | - DoubleConversion
203 | - glog
204 | - RCT-Folly (= 2020.01.13.00)
205 | - React-cxxreact (= 0.64.1)
206 | - React-jsi (= 0.64.1)
207 | - React-perflogger (= 0.64.1)
208 | - React-jsinspector (0.64.1)
209 | - react-native-safe-area-context (3.1.6):
210 | - React
211 | - React-perflogger (0.64.1)
212 | - React-RCTActionSheet (0.64.1):
213 | - React-Core/RCTActionSheetHeaders (= 0.64.1)
214 | - React-RCTAnimation (0.64.1):
215 | - FBReactNativeSpec (= 0.64.1)
216 | - RCT-Folly (= 2020.01.13.00)
217 | - RCTTypeSafety (= 0.64.1)
218 | - React-Core/RCTAnimationHeaders (= 0.64.1)
219 | - React-jsi (= 0.64.1)
220 | - ReactCommon/turbomodule/core (= 0.64.1)
221 | - React-RCTBlob (0.64.1):
222 | - FBReactNativeSpec (= 0.64.1)
223 | - RCT-Folly (= 2020.01.13.00)
224 | - React-Core/RCTBlobHeaders (= 0.64.1)
225 | - React-Core/RCTWebSocket (= 0.64.1)
226 | - React-jsi (= 0.64.1)
227 | - React-RCTNetwork (= 0.64.1)
228 | - ReactCommon/turbomodule/core (= 0.64.1)
229 | - React-RCTImage (0.64.1):
230 | - FBReactNativeSpec (= 0.64.1)
231 | - RCT-Folly (= 2020.01.13.00)
232 | - RCTTypeSafety (= 0.64.1)
233 | - React-Core/RCTImageHeaders (= 0.64.1)
234 | - React-jsi (= 0.64.1)
235 | - React-RCTNetwork (= 0.64.1)
236 | - ReactCommon/turbomodule/core (= 0.64.1)
237 | - React-RCTLinking (0.64.1):
238 | - FBReactNativeSpec (= 0.64.1)
239 | - React-Core/RCTLinkingHeaders (= 0.64.1)
240 | - React-jsi (= 0.64.1)
241 | - ReactCommon/turbomodule/core (= 0.64.1)
242 | - React-RCTNetwork (0.64.1):
243 | - FBReactNativeSpec (= 0.64.1)
244 | - RCT-Folly (= 2020.01.13.00)
245 | - RCTTypeSafety (= 0.64.1)
246 | - React-Core/RCTNetworkHeaders (= 0.64.1)
247 | - React-jsi (= 0.64.1)
248 | - ReactCommon/turbomodule/core (= 0.64.1)
249 | - React-RCTSettings (0.64.1):
250 | - FBReactNativeSpec (= 0.64.1)
251 | - RCT-Folly (= 2020.01.13.00)
252 | - RCTTypeSafety (= 0.64.1)
253 | - React-Core/RCTSettingsHeaders (= 0.64.1)
254 | - React-jsi (= 0.64.1)
255 | - ReactCommon/turbomodule/core (= 0.64.1)
256 | - React-RCTText (0.64.1):
257 | - React-Core/RCTTextHeaders (= 0.64.1)
258 | - React-RCTVibration (0.64.1):
259 | - FBReactNativeSpec (= 0.64.1)
260 | - RCT-Folly (= 2020.01.13.00)
261 | - React-Core/RCTVibrationHeaders (= 0.64.1)
262 | - React-jsi (= 0.64.1)
263 | - ReactCommon/turbomodule/core (= 0.64.1)
264 | - React-runtimeexecutor (0.64.1):
265 | - React-jsi (= 0.64.1)
266 | - ReactCommon/turbomodule/core (0.64.1):
267 | - DoubleConversion
268 | - glog
269 | - RCT-Folly (= 2020.01.13.00)
270 | - React-callinvoker (= 0.64.1)
271 | - React-Core (= 0.64.1)
272 | - React-cxxreact (= 0.64.1)
273 | - React-jsi (= 0.64.1)
274 | - React-perflogger (= 0.64.1)
275 | - RealmJS (10.10.1):
276 | - GCDWebServer
277 | - React
278 | - RNCMaskedView (0.1.10):
279 | - React
280 | - RNGestureHandler (1.10.3):
281 | - React-Core
282 | - RNReanimated (1.13.0):
283 | - React
284 | - RNScreens (2.10.1):
285 | - React
286 | - RNVectorIcons (7.0.0):
287 | - React
288 | - Yoga (1.14.0)
289 |
290 | DEPENDENCIES:
291 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
292 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
293 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
294 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
295 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
296 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
297 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
298 | - React (from `../node_modules/react-native/`)
299 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
300 | - React-Core (from `../node_modules/react-native/`)
301 | - React-Core/DevSupport (from `../node_modules/react-native/`)
302 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
303 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
304 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
305 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
306 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
307 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
308 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
309 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
310 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
311 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
312 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
313 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
314 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
315 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
316 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
317 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
318 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
319 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
320 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
321 | - RealmJS (from `../node_modules/realm`)
322 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
323 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
324 | - RNReanimated (from `../node_modules/react-native-reanimated`)
325 | - RNScreens (from `../node_modules/react-native-screens`)
326 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
327 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
328 |
329 | SPEC REPOS:
330 | trunk:
331 | - boost-for-react-native
332 | - GCDWebServer
333 |
334 | EXTERNAL SOURCES:
335 | DoubleConversion:
336 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
337 | FBLazyVector:
338 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
339 | FBReactNativeSpec:
340 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
341 | glog:
342 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
343 | RCT-Folly:
344 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
345 | RCTRequired:
346 | :path: "../node_modules/react-native/Libraries/RCTRequired"
347 | RCTTypeSafety:
348 | :path: "../node_modules/react-native/Libraries/TypeSafety"
349 | React:
350 | :path: "../node_modules/react-native/"
351 | React-callinvoker:
352 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
353 | React-Core:
354 | :path: "../node_modules/react-native/"
355 | React-CoreModules:
356 | :path: "../node_modules/react-native/React/CoreModules"
357 | React-cxxreact:
358 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
359 | React-jsi:
360 | :path: "../node_modules/react-native/ReactCommon/jsi"
361 | React-jsiexecutor:
362 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
363 | React-jsinspector:
364 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
365 | react-native-safe-area-context:
366 | :path: "../node_modules/react-native-safe-area-context"
367 | React-perflogger:
368 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
369 | React-RCTActionSheet:
370 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
371 | React-RCTAnimation:
372 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
373 | React-RCTBlob:
374 | :path: "../node_modules/react-native/Libraries/Blob"
375 | React-RCTImage:
376 | :path: "../node_modules/react-native/Libraries/Image"
377 | React-RCTLinking:
378 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
379 | React-RCTNetwork:
380 | :path: "../node_modules/react-native/Libraries/Network"
381 | React-RCTSettings:
382 | :path: "../node_modules/react-native/Libraries/Settings"
383 | React-RCTText:
384 | :path: "../node_modules/react-native/Libraries/Text"
385 | React-RCTVibration:
386 | :path: "../node_modules/react-native/Libraries/Vibration"
387 | React-runtimeexecutor:
388 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
389 | ReactCommon:
390 | :path: "../node_modules/react-native/ReactCommon"
391 | RealmJS:
392 | :path: "../node_modules/realm"
393 | RNCMaskedView:
394 | :path: "../node_modules/@react-native-community/masked-view"
395 | RNGestureHandler:
396 | :path: "../node_modules/react-native-gesture-handler"
397 | RNReanimated:
398 | :path: "../node_modules/react-native-reanimated"
399 | RNScreens:
400 | :path: "../node_modules/react-native-screens"
401 | RNVectorIcons:
402 | :path: "../node_modules/react-native-vector-icons"
403 | Yoga:
404 | :path: "../node_modules/react-native/ReactCommon/yoga"
405 |
406 | SPEC CHECKSUMS:
407 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
408 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
409 | FBLazyVector: 7b423f9e248eae65987838148c36eec1dbfe0b53
410 | FBReactNativeSpec: 8c6343e406b3da8ac95cd9918979101dfe93cf3b
411 | GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
412 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
413 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
414 | RCTRequired: ec2ebc96b7bfba3ca5c32740f5a0c6a014a274d2
415 | RCTTypeSafety: 22567f31e67c3e088c7ac23ea46ab6d4779c0ea5
416 | React: a241e3dbb1e91d06332f1dbd2b3ab26e1a4c4b9d
417 | React-callinvoker: da4d1c6141696a00163960906bc8a55b985e4ce4
418 | React-Core: 46ba164c437d7dac607b470c83c8308b05799748
419 | React-CoreModules: 217bd14904491c7b9940ff8b34a3fe08013c2f14
420 | React-cxxreact: 0090588ae6660c4615d3629fdd5c768d0983add4
421 | React-jsi: 5de8204706bd872b78ea646aee5d2561ca1214b6
422 | React-jsiexecutor: 124e8f99992490d0d13e0649d950d3e1aae06fe9
423 | React-jsinspector: 500a59626037be5b3b3d89c5151bc3baa9abf1a9
424 | react-native-safe-area-context: 1a1fdfdc6f9f5beb55b2f0d10d8cf029efd996f4
425 | React-perflogger: aad6d4b4a267936b3667260d1f649b6f6069a675
426 | React-RCTActionSheet: fc376be462c9c8d6ad82c0905442fd77f82a9d2a
427 | React-RCTAnimation: ba0a1c3a2738be224a08092fa7f1b444ab77d309
428 | React-RCTBlob: f758d4403fc5828a326dc69e27b41e1a92f34947
429 | React-RCTImage: ce57088705f4a8d03f6594b066a59c29143ba73e
430 | React-RCTLinking: 852a3a95c65fa63f657a4b4e2d3d83a815e00a7c
431 | React-RCTNetwork: 9d7ccb8a08d522d71700b4fb677d9fa28cccd118
432 | React-RCTSettings: d8aaf4389ff06114dee8c42ef5f0f2915946011e
433 | React-RCTText: 809c12ed6b261796ba056c04fcd20d8b90bcc81d
434 | React-RCTVibration: 4b99a7f5c6c0abbc5256410cc5425fb8531986e1
435 | React-runtimeexecutor: ff951a0c241bfaefc4940a3f1f1a229e7cb32fa6
436 | ReactCommon: bedc99ed4dae329c4fcf128d0c31b9115e5365ca
437 | RealmJS: 2925b36a86fc179b0b58ad48386e43eb95188e9a
438 | RNCMaskedView: f5c7d14d6847b7b44853f7acb6284c1da30a3459
439 | RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
440 | RNReanimated: 89f5e0a04d1dd52fbf27e7e7030d8f80a646a3fc
441 | RNScreens: b748efec66e095134c7166ca333b628cd7e6f3e2
442 | RNVectorIcons: da6fe858f5a65d7bbc3379540a889b0b12aa5976
443 | Yoga: a7de31c64fe738607e7a3803e3f591a4b1df7393
444 |
445 | PODFILE CHECKSUM: 5127060c7485cf4e0c2a4ff5e1dbc1265882f986
446 |
447 | COCOAPODS: 1.11.2
448 |
--------------------------------------------------------------------------------
/ios/rn.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* rnTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rnTests.m */; };
11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14 | 1D4E5472CE324EFE6C8B384C /* libPods-rn.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 849E1A9AD8B4F4B0A5BF3E72 /* libPods-rn.a */; };
15 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18 | 2DCD954D1E0B4F2C00145EB5 /* rnTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rnTests.m */; };
19 | 48ACBB1EA429D12135E3F9EB /* libPods-rn-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8863CD29B622C697D288496 /* libPods-rn-tvOS.a */; };
20 | 53EFBAAD2E83ABB2B9048A49 /* libPods-rn-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F699C5811E5E6517E52D1A68 /* libPods-rn-tvOSTests.a */; };
21 | 5C744F91AD69F6D63CB5DF6F /* libPods-rn-rnTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D54A9B759F2BF7C48755C879 /* libPods-rn-rnTests.a */; };
22 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
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 = rn;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "rn-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 /* rnTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = rnTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* rnTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = rnTests.m; sourceTree = ""; };
47 | 13B07F961A680F5B00A75B9A /* rn.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = rn.app; sourceTree = BUILT_PRODUCTS_DIR; };
48 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = rn/AppDelegate.h; sourceTree = ""; };
49 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = rn/AppDelegate.m; sourceTree = ""; };
50 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = rn/Images.xcassets; sourceTree = ""; };
51 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = rn/Info.plist; sourceTree = ""; };
52 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = rn/main.m; sourceTree = ""; };
53 | 2087B4751BBBC6C5DF3253AF /* Pods-rn.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn.release.xcconfig"; path = "Target Support Files/Pods-rn/Pods-rn.release.xcconfig"; sourceTree = ""; };
54 | 2D02E47B1E0B4A5D006451C7 /* rn-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "rn-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
55 | 2D02E4901E0B4A5D006451C7 /* rn-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "rn-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 4B10760314F483DD46C3A7B9 /* Pods-rn-rnTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-rnTests.release.xcconfig"; path = "Target Support Files/Pods-rn-rnTests/Pods-rn-rnTests.release.xcconfig"; sourceTree = ""; };
57 | 552F95F1A5BAF7F9644AC45D /* Pods-rn-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-rn-tvOS/Pods-rn-tvOS.debug.xcconfig"; sourceTree = ""; };
58 | 7A7E01FD098C4E123FDC46EB /* Pods-rn-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-rn-tvOSTests/Pods-rn-tvOSTests.release.xcconfig"; sourceTree = ""; };
59 | 7F7879398481606CDB633B05 /* Pods-rn-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-rn-tvOSTests/Pods-rn-tvOSTests.debug.xcconfig"; sourceTree = ""; };
60 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = rn/LaunchScreen.storyboard; sourceTree = ""; };
61 | 8396642B2F6EAA2D7522478C /* Pods-rn-rnTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-rnTests.debug.xcconfig"; path = "Target Support Files/Pods-rn-rnTests/Pods-rn-rnTests.debug.xcconfig"; sourceTree = ""; };
62 | 849E1A9AD8B4F4B0A5BF3E72 /* libPods-rn.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn.a"; sourceTree = BUILT_PRODUCTS_DIR; };
63 | C673122E7885EDCFECE10ABA /* Pods-rn.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn.debug.xcconfig"; path = "Target Support Files/Pods-rn/Pods-rn.debug.xcconfig"; sourceTree = ""; };
64 | D54A9B759F2BF7C48755C879 /* libPods-rn-rnTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn-rnTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
65 | EB397370B5DE1CB4595794FC /* Pods-rn-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn-tvOS.release.xcconfig"; path = "Target Support Files/Pods-rn-tvOS/Pods-rn-tvOS.release.xcconfig"; sourceTree = ""; };
66 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
67 | 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; };
68 | F699C5811E5E6517E52D1A68 /* libPods-rn-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
69 | F8863CD29B622C697D288496 /* libPods-rn-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | 5C744F91AD69F6D63CB5DF6F /* libPods-rn-rnTests.a in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | 1D4E5472CE324EFE6C8B384C /* libPods-rn.a in Frameworks */,
86 | );
87 | runOnlyForDeploymentPostprocessing = 0;
88 | };
89 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
90 | isa = PBXFrameworksBuildPhase;
91 | buildActionMask = 2147483647;
92 | files = (
93 | 48ACBB1EA429D12135E3F9EB /* libPods-rn-tvOS.a in Frameworks */,
94 | );
95 | runOnlyForDeploymentPostprocessing = 0;
96 | };
97 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
98 | isa = PBXFrameworksBuildPhase;
99 | buildActionMask = 2147483647;
100 | files = (
101 | 53EFBAAD2E83ABB2B9048A49 /* libPods-rn-tvOSTests.a in Frameworks */,
102 | );
103 | runOnlyForDeploymentPostprocessing = 0;
104 | };
105 | /* End PBXFrameworksBuildPhase section */
106 |
107 | /* Begin PBXGroup section */
108 | 00E356EF1AD99517003FC87E /* rnTests */ = {
109 | isa = PBXGroup;
110 | children = (
111 | 00E356F21AD99517003FC87E /* rnTests.m */,
112 | 00E356F01AD99517003FC87E /* Supporting Files */,
113 | );
114 | path = rnTests;
115 | sourceTree = "";
116 | };
117 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 00E356F11AD99517003FC87E /* Info.plist */,
121 | );
122 | name = "Supporting Files";
123 | sourceTree = "";
124 | };
125 | 058B534FE05ACD18AF2C9C93 /* Pods */ = {
126 | isa = PBXGroup;
127 | children = (
128 | C673122E7885EDCFECE10ABA /* Pods-rn.debug.xcconfig */,
129 | 2087B4751BBBC6C5DF3253AF /* Pods-rn.release.xcconfig */,
130 | 8396642B2F6EAA2D7522478C /* Pods-rn-rnTests.debug.xcconfig */,
131 | 4B10760314F483DD46C3A7B9 /* Pods-rn-rnTests.release.xcconfig */,
132 | 552F95F1A5BAF7F9644AC45D /* Pods-rn-tvOS.debug.xcconfig */,
133 | EB397370B5DE1CB4595794FC /* Pods-rn-tvOS.release.xcconfig */,
134 | 7F7879398481606CDB633B05 /* Pods-rn-tvOSTests.debug.xcconfig */,
135 | 7A7E01FD098C4E123FDC46EB /* Pods-rn-tvOSTests.release.xcconfig */,
136 | );
137 | name = Pods;
138 | path = Pods;
139 | sourceTree = "";
140 | };
141 | 13B07FAE1A68108700A75B9A /* rn */ = {
142 | isa = PBXGroup;
143 | children = (
144 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
145 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
146 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
147 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
148 | 13B07FB61A68108700A75B9A /* Info.plist */,
149 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
150 | 13B07FB71A68108700A75B9A /* main.m */,
151 | );
152 | name = rn;
153 | sourceTree = "";
154 | };
155 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
156 | isa = PBXGroup;
157 | children = (
158 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
159 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
160 | 849E1A9AD8B4F4B0A5BF3E72 /* libPods-rn.a */,
161 | D54A9B759F2BF7C48755C879 /* libPods-rn-rnTests.a */,
162 | F8863CD29B622C697D288496 /* libPods-rn-tvOS.a */,
163 | F699C5811E5E6517E52D1A68 /* libPods-rn-tvOSTests.a */,
164 | );
165 | name = Frameworks;
166 | sourceTree = "";
167 | };
168 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
169 | isa = PBXGroup;
170 | children = (
171 | );
172 | name = Libraries;
173 | sourceTree = "";
174 | };
175 | 83CBB9F61A601CBA00E9B192 = {
176 | isa = PBXGroup;
177 | children = (
178 | 13B07FAE1A68108700A75B9A /* rn */,
179 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
180 | 00E356EF1AD99517003FC87E /* rnTests */,
181 | 83CBBA001A601CBA00E9B192 /* Products */,
182 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
183 | 058B534FE05ACD18AF2C9C93 /* Pods */,
184 | );
185 | indentWidth = 2;
186 | sourceTree = "";
187 | tabWidth = 2;
188 | usesTabs = 0;
189 | };
190 | 83CBBA001A601CBA00E9B192 /* Products */ = {
191 | isa = PBXGroup;
192 | children = (
193 | 13B07F961A680F5B00A75B9A /* rn.app */,
194 | 00E356EE1AD99517003FC87E /* rnTests.xctest */,
195 | 2D02E47B1E0B4A5D006451C7 /* rn-tvOS.app */,
196 | 2D02E4901E0B4A5D006451C7 /* rn-tvOSTests.xctest */,
197 | );
198 | name = Products;
199 | sourceTree = "";
200 | };
201 | /* End PBXGroup section */
202 |
203 | /* Begin PBXNativeTarget section */
204 | 00E356ED1AD99517003FC87E /* rnTests */ = {
205 | isa = PBXNativeTarget;
206 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rnTests" */;
207 | buildPhases = (
208 | 50540A6DFCE608FDAFC8D453 /* [CP] Check Pods Manifest.lock */,
209 | 00E356EA1AD99517003FC87E /* Sources */,
210 | 00E356EB1AD99517003FC87E /* Frameworks */,
211 | 00E356EC1AD99517003FC87E /* Resources */,
212 | EECC3769034D9579AF656B69 /* [CP] Copy Pods Resources */,
213 | );
214 | buildRules = (
215 | );
216 | dependencies = (
217 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
218 | );
219 | name = rnTests;
220 | productName = rnTests;
221 | productReference = 00E356EE1AD99517003FC87E /* rnTests.xctest */;
222 | productType = "com.apple.product-type.bundle.unit-test";
223 | };
224 | 13B07F861A680F5B00A75B9A /* rn */ = {
225 | isa = PBXNativeTarget;
226 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "rn" */;
227 | buildPhases = (
228 | B9A2C3FD5C530FD34D47D815 /* [CP] Check Pods Manifest.lock */,
229 | FD10A7F022414F080027D42C /* Start Packager */,
230 | 13B07F871A680F5B00A75B9A /* Sources */,
231 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
232 | 13B07F8E1A680F5B00A75B9A /* Resources */,
233 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
234 | E397F7F96EE2F56348D8017F /* [CP] Copy Pods Resources */,
235 | );
236 | buildRules = (
237 | );
238 | dependencies = (
239 | );
240 | name = rn;
241 | productName = rn;
242 | productReference = 13B07F961A680F5B00A75B9A /* rn.app */;
243 | productType = "com.apple.product-type.application";
244 | };
245 | 2D02E47A1E0B4A5D006451C7 /* rn-tvOS */ = {
246 | isa = PBXNativeTarget;
247 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn-tvOS" */;
248 | buildPhases = (
249 | B4AF3CF881752583580FC644 /* [CP] Check Pods Manifest.lock */,
250 | FD10A7F122414F3F0027D42C /* Start Packager */,
251 | 2D02E4771E0B4A5D006451C7 /* Sources */,
252 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
253 | 2D02E4791E0B4A5D006451C7 /* Resources */,
254 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
255 | );
256 | buildRules = (
257 | );
258 | dependencies = (
259 | );
260 | name = "rn-tvOS";
261 | productName = "rn-tvOS";
262 | productReference = 2D02E47B1E0B4A5D006451C7 /* rn-tvOS.app */;
263 | productType = "com.apple.product-type.application";
264 | };
265 | 2D02E48F1E0B4A5D006451C7 /* rn-tvOSTests */ = {
266 | isa = PBXNativeTarget;
267 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn-tvOSTests" */;
268 | buildPhases = (
269 | 5EEB97F812FFBFB95910DBB0 /* [CP] Check Pods Manifest.lock */,
270 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
271 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
272 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
273 | );
274 | buildRules = (
275 | );
276 | dependencies = (
277 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
278 | );
279 | name = "rn-tvOSTests";
280 | productName = "rn-tvOSTests";
281 | productReference = 2D02E4901E0B4A5D006451C7 /* rn-tvOSTests.xctest */;
282 | productType = "com.apple.product-type.bundle.unit-test";
283 | };
284 | /* End PBXNativeTarget section */
285 |
286 | /* Begin PBXProject section */
287 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
288 | isa = PBXProject;
289 | attributes = {
290 | LastUpgradeCheck = 1130;
291 | TargetAttributes = {
292 | 00E356ED1AD99517003FC87E = {
293 | CreatedOnToolsVersion = 6.2;
294 | TestTargetID = 13B07F861A680F5B00A75B9A;
295 | };
296 | 13B07F861A680F5B00A75B9A = {
297 | LastSwiftMigration = 1120;
298 | };
299 | 2D02E47A1E0B4A5D006451C7 = {
300 | CreatedOnToolsVersion = 8.2.1;
301 | ProvisioningStyle = Automatic;
302 | };
303 | 2D02E48F1E0B4A5D006451C7 = {
304 | CreatedOnToolsVersion = 8.2.1;
305 | ProvisioningStyle = Automatic;
306 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
307 | };
308 | };
309 | };
310 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "rn" */;
311 | compatibilityVersion = "Xcode 3.2";
312 | developmentRegion = en;
313 | hasScannedForEncodings = 0;
314 | knownRegions = (
315 | en,
316 | Base,
317 | );
318 | mainGroup = 83CBB9F61A601CBA00E9B192;
319 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
320 | projectDirPath = "";
321 | projectRoot = "";
322 | targets = (
323 | 13B07F861A680F5B00A75B9A /* rn */,
324 | 00E356ED1AD99517003FC87E /* rnTests */,
325 | 2D02E47A1E0B4A5D006451C7 /* rn-tvOS */,
326 | 2D02E48F1E0B4A5D006451C7 /* rn-tvOSTests */,
327 | );
328 | };
329 | /* End PBXProject section */
330 |
331 | /* Begin PBXResourcesBuildPhase section */
332 | 00E356EC1AD99517003FC87E /* Resources */ = {
333 | isa = PBXResourcesBuildPhase;
334 | buildActionMask = 2147483647;
335 | files = (
336 | );
337 | runOnlyForDeploymentPostprocessing = 0;
338 | };
339 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
340 | isa = PBXResourcesBuildPhase;
341 | buildActionMask = 2147483647;
342 | files = (
343 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
344 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
345 | );
346 | runOnlyForDeploymentPostprocessing = 0;
347 | };
348 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
349 | isa = PBXResourcesBuildPhase;
350 | buildActionMask = 2147483647;
351 | files = (
352 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
353 | );
354 | runOnlyForDeploymentPostprocessing = 0;
355 | };
356 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
357 | isa = PBXResourcesBuildPhase;
358 | buildActionMask = 2147483647;
359 | files = (
360 | );
361 | runOnlyForDeploymentPostprocessing = 0;
362 | };
363 | /* End PBXResourcesBuildPhase section */
364 |
365 | /* Begin PBXShellScriptBuildPhase section */
366 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
367 | isa = PBXShellScriptBuildPhase;
368 | buildActionMask = 2147483647;
369 | files = (
370 | );
371 | inputPaths = (
372 | );
373 | name = "Bundle React Native code and images";
374 | outputPaths = (
375 | );
376 | runOnlyForDeploymentPostprocessing = 0;
377 | shellPath = /bin/sh;
378 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
379 | };
380 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputPaths = (
386 | );
387 | name = "Bundle React Native Code And Images";
388 | outputPaths = (
389 | );
390 | runOnlyForDeploymentPostprocessing = 0;
391 | shellPath = /bin/sh;
392 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
393 | };
394 | 50540A6DFCE608FDAFC8D453 /* [CP] Check Pods Manifest.lock */ = {
395 | isa = PBXShellScriptBuildPhase;
396 | buildActionMask = 2147483647;
397 | files = (
398 | );
399 | inputFileListPaths = (
400 | );
401 | inputPaths = (
402 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
403 | "${PODS_ROOT}/Manifest.lock",
404 | );
405 | name = "[CP] Check Pods Manifest.lock";
406 | outputFileListPaths = (
407 | );
408 | outputPaths = (
409 | "$(DERIVED_FILE_DIR)/Pods-rn-rnTests-checkManifestLockResult.txt",
410 | );
411 | runOnlyForDeploymentPostprocessing = 0;
412 | shellPath = /bin/sh;
413 | 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";
414 | showEnvVarsInLog = 0;
415 | };
416 | 5EEB97F812FFBFB95910DBB0 /* [CP] Check Pods Manifest.lock */ = {
417 | isa = PBXShellScriptBuildPhase;
418 | buildActionMask = 2147483647;
419 | files = (
420 | );
421 | inputFileListPaths = (
422 | );
423 | inputPaths = (
424 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
425 | "${PODS_ROOT}/Manifest.lock",
426 | );
427 | name = "[CP] Check Pods Manifest.lock";
428 | outputFileListPaths = (
429 | );
430 | outputPaths = (
431 | "$(DERIVED_FILE_DIR)/Pods-rn-tvOSTests-checkManifestLockResult.txt",
432 | );
433 | runOnlyForDeploymentPostprocessing = 0;
434 | shellPath = /bin/sh;
435 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
436 | showEnvVarsInLog = 0;
437 | };
438 | B4AF3CF881752583580FC644 /* [CP] Check Pods Manifest.lock */ = {
439 | isa = PBXShellScriptBuildPhase;
440 | buildActionMask = 2147483647;
441 | files = (
442 | );
443 | inputFileListPaths = (
444 | );
445 | inputPaths = (
446 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
447 | "${PODS_ROOT}/Manifest.lock",
448 | );
449 | name = "[CP] Check Pods Manifest.lock";
450 | outputFileListPaths = (
451 | );
452 | outputPaths = (
453 | "$(DERIVED_FILE_DIR)/Pods-rn-tvOS-checkManifestLockResult.txt",
454 | );
455 | runOnlyForDeploymentPostprocessing = 0;
456 | shellPath = /bin/sh;
457 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
458 | showEnvVarsInLog = 0;
459 | };
460 | B9A2C3FD5C530FD34D47D815 /* [CP] Check Pods Manifest.lock */ = {
461 | isa = PBXShellScriptBuildPhase;
462 | buildActionMask = 2147483647;
463 | files = (
464 | );
465 | inputFileListPaths = (
466 | );
467 | inputPaths = (
468 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
469 | "${PODS_ROOT}/Manifest.lock",
470 | );
471 | name = "[CP] Check Pods Manifest.lock";
472 | outputFileListPaths = (
473 | );
474 | outputPaths = (
475 | "$(DERIVED_FILE_DIR)/Pods-rn-checkManifestLockResult.txt",
476 | );
477 | runOnlyForDeploymentPostprocessing = 0;
478 | shellPath = /bin/sh;
479 | 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";
480 | showEnvVarsInLog = 0;
481 | };
482 | E397F7F96EE2F56348D8017F /* [CP] Copy Pods Resources */ = {
483 | isa = PBXShellScriptBuildPhase;
484 | buildActionMask = 2147483647;
485 | files = (
486 | );
487 | inputPaths = (
488 | "${PODS_ROOT}/Target Support Files/Pods-rn/Pods-rn-resources.sh",
489 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
490 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
491 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
492 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
493 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
494 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
495 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
496 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
497 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
498 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
499 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
500 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
501 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
502 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
503 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
504 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
505 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
506 | );
507 | name = "[CP] Copy Pods Resources";
508 | outputPaths = (
509 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
510 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
511 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
512 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
513 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
514 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
515 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
516 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
517 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
518 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
519 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
520 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
521 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
522 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
523 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
524 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
525 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
526 | );
527 | runOnlyForDeploymentPostprocessing = 0;
528 | shellPath = /bin/sh;
529 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-rn/Pods-rn-resources.sh\"\n";
530 | showEnvVarsInLog = 0;
531 | };
532 | EECC3769034D9579AF656B69 /* [CP] Copy Pods Resources */ = {
533 | isa = PBXShellScriptBuildPhase;
534 | buildActionMask = 2147483647;
535 | files = (
536 | );
537 | inputPaths = (
538 | "${PODS_ROOT}/Target Support Files/Pods-rn-rnTests/Pods-rn-rnTests-resources.sh",
539 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
540 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
541 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
542 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
543 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
544 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
545 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
546 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
547 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
548 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
549 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
550 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
551 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
552 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
553 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
554 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
555 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
556 | );
557 | name = "[CP] Copy Pods Resources";
558 | outputPaths = (
559 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
560 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
561 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
562 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
563 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
564 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
565 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
566 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
567 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
568 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
569 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
570 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
571 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
572 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
573 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
574 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
575 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
576 | );
577 | runOnlyForDeploymentPostprocessing = 0;
578 | shellPath = /bin/sh;
579 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-rn-rnTests/Pods-rn-rnTests-resources.sh\"\n";
580 | showEnvVarsInLog = 0;
581 | };
582 | FD10A7F022414F080027D42C /* Start Packager */ = {
583 | isa = PBXShellScriptBuildPhase;
584 | buildActionMask = 2147483647;
585 | files = (
586 | );
587 | inputFileListPaths = (
588 | );
589 | inputPaths = (
590 | );
591 | name = "Start Packager";
592 | outputFileListPaths = (
593 | );
594 | outputPaths = (
595 | );
596 | runOnlyForDeploymentPostprocessing = 0;
597 | shellPath = /bin/sh;
598 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
599 | showEnvVarsInLog = 0;
600 | };
601 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
602 | isa = PBXShellScriptBuildPhase;
603 | buildActionMask = 2147483647;
604 | files = (
605 | );
606 | inputFileListPaths = (
607 | );
608 | inputPaths = (
609 | );
610 | name = "Start Packager";
611 | outputFileListPaths = (
612 | );
613 | outputPaths = (
614 | );
615 | runOnlyForDeploymentPostprocessing = 0;
616 | shellPath = /bin/sh;
617 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
618 | showEnvVarsInLog = 0;
619 | };
620 | /* End PBXShellScriptBuildPhase section */
621 |
622 | /* Begin PBXSourcesBuildPhase section */
623 | 00E356EA1AD99517003FC87E /* Sources */ = {
624 | isa = PBXSourcesBuildPhase;
625 | buildActionMask = 2147483647;
626 | files = (
627 | 00E356F31AD99517003FC87E /* rnTests.m in Sources */,
628 | );
629 | runOnlyForDeploymentPostprocessing = 0;
630 | };
631 | 13B07F871A680F5B00A75B9A /* Sources */ = {
632 | isa = PBXSourcesBuildPhase;
633 | buildActionMask = 2147483647;
634 | files = (
635 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
636 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
637 | );
638 | runOnlyForDeploymentPostprocessing = 0;
639 | };
640 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
641 | isa = PBXSourcesBuildPhase;
642 | buildActionMask = 2147483647;
643 | files = (
644 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
645 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
646 | );
647 | runOnlyForDeploymentPostprocessing = 0;
648 | };
649 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
650 | isa = PBXSourcesBuildPhase;
651 | buildActionMask = 2147483647;
652 | files = (
653 | 2DCD954D1E0B4F2C00145EB5 /* rnTests.m in Sources */,
654 | );
655 | runOnlyForDeploymentPostprocessing = 0;
656 | };
657 | /* End PBXSourcesBuildPhase section */
658 |
659 | /* Begin PBXTargetDependency section */
660 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
661 | isa = PBXTargetDependency;
662 | target = 13B07F861A680F5B00A75B9A /* rn */;
663 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
664 | };
665 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
666 | isa = PBXTargetDependency;
667 | target = 2D02E47A1E0B4A5D006451C7 /* rn-tvOS */;
668 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
669 | };
670 | /* End PBXTargetDependency section */
671 |
672 | /* Begin XCBuildConfiguration section */
673 | 00E356F61AD99517003FC87E /* Debug */ = {
674 | isa = XCBuildConfiguration;
675 | baseConfigurationReference = 8396642B2F6EAA2D7522478C /* Pods-rn-rnTests.debug.xcconfig */;
676 | buildSettings = {
677 | BUNDLE_LOADER = "$(TEST_HOST)";
678 | GCC_PREPROCESSOR_DEFINITIONS = (
679 | "DEBUG=1",
680 | "$(inherited)",
681 | );
682 | INFOPLIST_FILE = rnTests/Info.plist;
683 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
684 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
685 | OTHER_LDFLAGS = (
686 | "-ObjC",
687 | "-lc++",
688 | "$(inherited)",
689 | );
690 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
691 | PRODUCT_NAME = "$(TARGET_NAME)";
692 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn.app/rn";
693 | };
694 | name = Debug;
695 | };
696 | 00E356F71AD99517003FC87E /* Release */ = {
697 | isa = XCBuildConfiguration;
698 | baseConfigurationReference = 4B10760314F483DD46C3A7B9 /* Pods-rn-rnTests.release.xcconfig */;
699 | buildSettings = {
700 | BUNDLE_LOADER = "$(TEST_HOST)";
701 | COPY_PHASE_STRIP = NO;
702 | INFOPLIST_FILE = rnTests/Info.plist;
703 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
704 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
705 | OTHER_LDFLAGS = (
706 | "-ObjC",
707 | "-lc++",
708 | "$(inherited)",
709 | );
710 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
711 | PRODUCT_NAME = "$(TARGET_NAME)";
712 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn.app/rn";
713 | };
714 | name = Release;
715 | };
716 | 13B07F941A680F5B00A75B9A /* Debug */ = {
717 | isa = XCBuildConfiguration;
718 | baseConfigurationReference = C673122E7885EDCFECE10ABA /* Pods-rn.debug.xcconfig */;
719 | buildSettings = {
720 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
721 | CLANG_ENABLE_MODULES = YES;
722 | CURRENT_PROJECT_VERSION = 1;
723 | ENABLE_BITCODE = NO;
724 | INFOPLIST_FILE = rn/Info.plist;
725 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
726 | OTHER_LDFLAGS = (
727 | "$(inherited)",
728 | "-ObjC",
729 | "-lc++",
730 | );
731 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
732 | PRODUCT_NAME = rn;
733 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
734 | SWIFT_VERSION = 5.0;
735 | VERSIONING_SYSTEM = "apple-generic";
736 | };
737 | name = Debug;
738 | };
739 | 13B07F951A680F5B00A75B9A /* Release */ = {
740 | isa = XCBuildConfiguration;
741 | baseConfigurationReference = 2087B4751BBBC6C5DF3253AF /* Pods-rn.release.xcconfig */;
742 | buildSettings = {
743 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
744 | CLANG_ENABLE_MODULES = YES;
745 | CURRENT_PROJECT_VERSION = 1;
746 | INFOPLIST_FILE = rn/Info.plist;
747 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
748 | OTHER_LDFLAGS = (
749 | "$(inherited)",
750 | "-ObjC",
751 | "-lc++",
752 | );
753 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
754 | PRODUCT_NAME = rn;
755 | SWIFT_VERSION = 5.0;
756 | VERSIONING_SYSTEM = "apple-generic";
757 | };
758 | name = Release;
759 | };
760 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
761 | isa = XCBuildConfiguration;
762 | baseConfigurationReference = 552F95F1A5BAF7F9644AC45D /* Pods-rn-tvOS.debug.xcconfig */;
763 | buildSettings = {
764 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
765 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
766 | CLANG_ANALYZER_NONNULL = YES;
767 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
768 | CLANG_WARN_INFINITE_RECURSION = YES;
769 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
770 | DEBUG_INFORMATION_FORMAT = dwarf;
771 | ENABLE_TESTABILITY = YES;
772 | GCC_NO_COMMON_BLOCKS = YES;
773 | INFOPLIST_FILE = "rn-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.rn-tvOS";
781 | PRODUCT_NAME = "$(TARGET_NAME)";
782 | SDKROOT = appletvos;
783 | TARGETED_DEVICE_FAMILY = 3;
784 | TVOS_DEPLOYMENT_TARGET = 10.0;
785 | };
786 | name = Debug;
787 | };
788 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
789 | isa = XCBuildConfiguration;
790 | baseConfigurationReference = EB397370B5DE1CB4595794FC /* Pods-rn-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 = "rn-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.rn-tvOS";
809 | PRODUCT_NAME = "$(TARGET_NAME)";
810 | SDKROOT = appletvos;
811 | TARGETED_DEVICE_FAMILY = 3;
812 | TVOS_DEPLOYMENT_TARGET = 10.0;
813 | };
814 | name = Release;
815 | };
816 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
817 | isa = XCBuildConfiguration;
818 | baseConfigurationReference = 7F7879398481606CDB633B05 /* Pods-rn-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 = "rn-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.rn-tvOSTests";
836 | PRODUCT_NAME = "$(TARGET_NAME)";
837 | SDKROOT = appletvos;
838 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn-tvOS.app/rn-tvOS";
839 | TVOS_DEPLOYMENT_TARGET = 10.1;
840 | };
841 | name = Debug;
842 | };
843 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
844 | isa = XCBuildConfiguration;
845 | baseConfigurationReference = 7A7E01FD098C4E123FDC46EB /* Pods-rn-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 = "rn-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.rn-tvOSTests";
863 | PRODUCT_NAME = "$(TARGET_NAME)";
864 | SDKROOT = appletvos;
865 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn-tvOS.app/rn-tvOS";
866 | TVOS_DEPLOYMENT_TARGET = 10.1;
867 | };
868 | name = Release;
869 | };
870 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
871 | isa = XCBuildConfiguration;
872 | buildSettings = {
873 | ALWAYS_SEARCH_USER_PATHS = NO;
874 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
875 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
876 | CLANG_CXX_LIBRARY = "libc++";
877 | CLANG_ENABLE_MODULES = YES;
878 | CLANG_ENABLE_OBJC_ARC = YES;
879 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
880 | CLANG_WARN_BOOL_CONVERSION = YES;
881 | CLANG_WARN_COMMA = YES;
882 | CLANG_WARN_CONSTANT_CONVERSION = YES;
883 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
884 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
885 | CLANG_WARN_EMPTY_BODY = YES;
886 | CLANG_WARN_ENUM_CONVERSION = YES;
887 | CLANG_WARN_INFINITE_RECURSION = YES;
888 | CLANG_WARN_INT_CONVERSION = YES;
889 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
890 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
891 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
892 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
893 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
894 | CLANG_WARN_STRICT_PROTOTYPES = YES;
895 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
896 | CLANG_WARN_UNREACHABLE_CODE = YES;
897 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
898 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
899 | COPY_PHASE_STRIP = NO;
900 | ENABLE_STRICT_OBJC_MSGSEND = YES;
901 | ENABLE_TESTABILITY = YES;
902 | GCC_C_LANGUAGE_STANDARD = gnu99;
903 | GCC_DYNAMIC_NO_PIC = NO;
904 | GCC_NO_COMMON_BLOCKS = YES;
905 | GCC_OPTIMIZATION_LEVEL = 0;
906 | GCC_PREPROCESSOR_DEFINITIONS = (
907 | "DEBUG=1",
908 | "$(inherited)",
909 | );
910 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
911 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
912 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
913 | GCC_WARN_UNDECLARED_SELECTOR = YES;
914 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
915 | GCC_WARN_UNUSED_FUNCTION = YES;
916 | GCC_WARN_UNUSED_VARIABLE = YES;
917 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
918 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
919 | LIBRARY_SEARCH_PATHS = (
920 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
921 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
922 | "\"$(inherited)\"",
923 | );
924 | MTL_ENABLE_DEBUG_INFO = YES;
925 | ONLY_ACTIVE_ARCH = YES;
926 | SDKROOT = iphoneos;
927 | };
928 | name = Debug;
929 | };
930 | 83CBBA211A601CBA00E9B192 /* Release */ = {
931 | isa = XCBuildConfiguration;
932 | buildSettings = {
933 | ALWAYS_SEARCH_USER_PATHS = NO;
934 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
935 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
936 | CLANG_CXX_LIBRARY = "libc++";
937 | CLANG_ENABLE_MODULES = YES;
938 | CLANG_ENABLE_OBJC_ARC = YES;
939 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
940 | CLANG_WARN_BOOL_CONVERSION = YES;
941 | CLANG_WARN_COMMA = YES;
942 | CLANG_WARN_CONSTANT_CONVERSION = YES;
943 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
944 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
945 | CLANG_WARN_EMPTY_BODY = YES;
946 | CLANG_WARN_ENUM_CONVERSION = YES;
947 | CLANG_WARN_INFINITE_RECURSION = YES;
948 | CLANG_WARN_INT_CONVERSION = YES;
949 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
950 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
951 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
952 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
953 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
954 | CLANG_WARN_STRICT_PROTOTYPES = YES;
955 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
956 | CLANG_WARN_UNREACHABLE_CODE = YES;
957 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
958 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
959 | COPY_PHASE_STRIP = YES;
960 | ENABLE_NS_ASSERTIONS = NO;
961 | ENABLE_STRICT_OBJC_MSGSEND = YES;
962 | GCC_C_LANGUAGE_STANDARD = gnu99;
963 | GCC_NO_COMMON_BLOCKS = YES;
964 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
965 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
966 | GCC_WARN_UNDECLARED_SELECTOR = YES;
967 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
968 | GCC_WARN_UNUSED_FUNCTION = YES;
969 | GCC_WARN_UNUSED_VARIABLE = YES;
970 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
971 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
972 | LIBRARY_SEARCH_PATHS = (
973 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
974 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
975 | "\"$(inherited)\"",
976 | );
977 | MTL_ENABLE_DEBUG_INFO = NO;
978 | SDKROOT = iphoneos;
979 | VALIDATE_PRODUCT = YES;
980 | };
981 | name = Release;
982 | };
983 | /* End XCBuildConfiguration section */
984 |
985 | /* Begin XCConfigurationList section */
986 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rnTests" */ = {
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 "rn" */ = {
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 "rn-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 "rn-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 "rn" */ = {
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 |
--------------------------------------------------------------------------------