= ({ item }) => {
48 | const onPress = () => {
49 | navigation.navigate(Route.LOCATION, { name: item.address?.locationName })
50 | }
51 | return
52 | }
53 |
54 | const showList = status === 'finished' && pollingLocations.length > 0
55 | const showZeroResults = status === 'finished' && pollingLocations.length === 0
56 | return (
57 | <>
58 | {status === 'loading' ? : null}
59 | {status === 'error' ? (
60 |
61 |
62 |
63 | ) : null}
64 | {showZeroResults ? (
65 |
66 |
67 | No polling locations found, please try another address.
68 |
69 |
70 | ) : null}
71 | {showList ? (
72 |
80 | ) : null}
81 | >
82 | )
83 | }
84 |
85 | const styles = StyleSheet.create({
86 | errorContainer: {
87 | backgroundColor: colors.uiLight,
88 | flex: 1,
89 | flexDirection: 'column',
90 | justifyContent: 'center',
91 | padding: 20,
92 | },
93 | list: { backgroundColor: colors.uiLight, flex: 1, padding: 25 },
94 | noResults: { color: colors.uiMedium, fontSize: 20, textAlign: 'center' },
95 | })
96 |
97 | export { LocationsScreen }
98 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/vote/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.vote;
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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/Vote.xcodeproj/xcshareddata/xcschemes/Vote.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/Vote.xcodeproj/xcshareddata/xcschemes/Vote-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 |
--------------------------------------------------------------------------------
/src/screens/Location/index.tsx:
--------------------------------------------------------------------------------
1 | import React, { FC } from 'react'
2 | import { Linking, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
3 | import { RouteProp } from '@react-navigation/native'
4 | import { Route, ScreenNavigatorParamList } from '../types'
5 | import { NativeStackNavigationProp } from 'react-native-screens/lib/typescript/types'
6 | import { useCivicInfoState } from '../../state'
7 | import MapView, { Marker, PROVIDER_GOOGLE } from 'react-native-maps'
8 | import Icon from 'react-native-vector-icons/EvilIcons'
9 | import { Button } from '../../shared/buttons/Button'
10 | import { colors } from '../../shared/style'
11 | import { en } from '../../shared/i18n'
12 | import { useTranslation } from 'react-i18next'
13 |
14 | type LocationScreenRouteProp = RouteProp
15 |
16 | type LocationScreenNavigationProp = NativeStackNavigationProp<
17 | ScreenNavigatorParamList,
18 | Route.LOCATION
19 | >
20 |
21 | type Props = {
22 | navigation: LocationScreenNavigationProp
23 | route: LocationScreenRouteProp
24 | }
25 |
26 | const LocationScreen: FC = ({ navigation, route }) => {
27 | const { t } = useTranslation()
28 | const { selectors } = useCivicInfoState()
29 | const location = selectors.location(route.params.name)
30 | const address = location?.address
31 | const hours = location?.pollingHours
32 | const latitude = location?.latitude
33 | const longitude = location?.longitude
34 | const sources = location?.sources
35 |
36 | const onClose = () => {
37 | navigation.goBack()
38 | }
39 |
40 | const onDirectionsPress = async () => {
41 | Linking.openURL(`https://maps.google.com/?daddr=${latitude},${longitude}`)
42 | }
43 |
44 | return (
45 |
46 |
51 |
52 |
53 | {latitude !== undefined && longitude !== undefined ? (
54 |
55 |
65 |
73 |
74 |
75 | ) : null}
76 |
77 | {address?.locationName}
78 | {address?.line1}
79 | {`${address?.city}, ${address?.state}, ${address?.zip}`}
82 | {hours !== undefined ? (
83 |
84 | {t(en.hours)}: {hours}
85 |
86 | ) : null}
87 |
88 | {latitude !== undefined && longitude !== undefined ? (
89 |
90 | ) : null}
91 | {sources !== undefined
92 | ? sources.map(source => (
93 |
94 | {t(en.source)}: {source.name}
95 |
96 | ))
97 | : null}
98 |
99 |
100 | )
101 | }
102 |
103 | const styles = StyleSheet.create({
104 | address: { color: colors.uiMedium, fontSize: 15, paddingBottom: 3 },
105 | container: { backgroundColor: colors.uiLight, flex: 1 },
106 | icon: { alignSelf: 'center' },
107 | iconContainer: {
108 | backgroundColor: colors.uiMediumAlpha80,
109 | borderRadius: 25,
110 | height: 45,
111 | justifyContent: 'center',
112 | position: 'absolute',
113 | right: 10,
114 | top: 20,
115 | width: 45,
116 | zIndex: 1000,
117 | },
118 | map: {
119 | ...StyleSheet.absoluteFillObject,
120 | },
121 | mapContainer: {
122 | alignItems: 'center',
123 | height: 300,
124 | width: '100%',
125 | },
126 | source: {
127 | color: colors.uiMedium,
128 | fontSize: 12,
129 | paddingBottom: 3,
130 | textAlign: 'center',
131 | },
132 | text: { flexGrow: 1, padding: 25 },
133 | title: { fontSize: 25, paddingBottom: 8 },
134 | })
135 |
136 | export { LocationScreen }
137 |
--------------------------------------------------------------------------------
/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: true, // 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.vote"
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 | implementation(project(':react-native-maps')){
204 | exclude group: 'com.google.android.gms', module: 'play-services-base'
205 | exclude group: 'com.google.android.gms', module: 'play-services-maps'
206 | }
207 | implementation 'com.google.android.gms:play-services-base:17.2.1'
208 | implementation 'com.google.android.gms:play-services-maps:17.0.0'
209 |
210 | if (enableHermes) {
211 | def hermesPath = "../../node_modules/hermes-engine/android/";
212 | debugImplementation files(hermesPath + "hermes-debug.aar")
213 | releaseImplementation files(hermesPath + "hermes-release.aar")
214 | } else {
215 | implementation jscFlavor
216 | }
217 | }
218 |
219 | // Run this once to be able to run the application with BUCK
220 | // puts all compile dependencies into folder libs for BUCK to use
221 | task copyDownloadableDepsToLibs(type: Copy) {
222 | from configurations.compile
223 | into 'libs'
224 | }
225 |
226 | project.ext.vectoricons = [
227 | iconFontNames: [ 'EvilIcons.ttf' ]
228 | ]
229 |
230 | apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
231 |
232 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
233 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.4)
4 | - CocoaLibEvent (1.0.0)
5 | - DoubleConversion (1.1.6)
6 | - FBLazyVector (0.63.3)
7 | - FBReactNativeSpec (0.63.3):
8 | - Folly (= 2020.01.13.00)
9 | - RCTRequired (= 0.63.3)
10 | - RCTTypeSafety (= 0.63.3)
11 | - React-Core (= 0.63.3)
12 | - React-jsi (= 0.63.3)
13 | - ReactCommon/turbomodule/core (= 0.63.3)
14 | - Flipper (0.54.0):
15 | - Flipper-Folly (~> 2.2)
16 | - Flipper-RSocket (~> 1.1)
17 | - Flipper-DoubleConversion (1.1.7)
18 | - Flipper-Folly (2.2.0):
19 | - boost-for-react-native
20 | - CocoaLibEvent (~> 1.0)
21 | - Flipper-DoubleConversion
22 | - Flipper-Glog
23 | - OpenSSL-Universal (= 1.0.2.19)
24 | - Flipper-Glog (0.3.6)
25 | - Flipper-PeerTalk (0.0.4)
26 | - Flipper-RSocket (1.1.0):
27 | - Flipper-Folly (~> 2.2)
28 | - FlipperKit (0.54.0):
29 | - FlipperKit/Core (= 0.54.0)
30 | - FlipperKit/Core (0.54.0):
31 | - Flipper (~> 0.54.0)
32 | - FlipperKit/CppBridge
33 | - FlipperKit/FBCxxFollyDynamicConvert
34 | - FlipperKit/FBDefines
35 | - FlipperKit/FKPortForwarding
36 | - FlipperKit/CppBridge (0.54.0):
37 | - Flipper (~> 0.54.0)
38 | - FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
39 | - Flipper-Folly (~> 2.2)
40 | - FlipperKit/FBDefines (0.54.0)
41 | - FlipperKit/FKPortForwarding (0.54.0):
42 | - CocoaAsyncSocket (~> 7.6)
43 | - Flipper-PeerTalk (~> 0.0.4)
44 | - FlipperKit/FlipperKitHighlightOverlay (0.54.0)
45 | - FlipperKit/FlipperKitLayoutPlugin (0.54.0):
46 | - FlipperKit/Core
47 | - FlipperKit/FlipperKitHighlightOverlay
48 | - FlipperKit/FlipperKitLayoutTextSearchable
49 | - YogaKit (~> 1.18)
50 | - FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
51 | - FlipperKit/FlipperKitNetworkPlugin (0.54.0):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitReactPlugin (0.54.0):
54 | - FlipperKit/Core
55 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
56 | - FlipperKit/Core
57 | - FlipperKit/SKIOSNetworkPlugin (0.54.0):
58 | - FlipperKit/Core
59 | - FlipperKit/FlipperKitNetworkPlugin
60 | - Folly (2020.01.13.00):
61 | - boost-for-react-native
62 | - DoubleConversion
63 | - Folly/Default (= 2020.01.13.00)
64 | - glog
65 | - Folly/Default (2020.01.13.00):
66 | - boost-for-react-native
67 | - DoubleConversion
68 | - glog
69 | - glog (0.3.5)
70 | - Google-Maps-iOS-Utils (2.1.0):
71 | - Google-Maps-iOS-Utils/Clustering (= 2.1.0)
72 | - Google-Maps-iOS-Utils/Geometry (= 2.1.0)
73 | - Google-Maps-iOS-Utils/Heatmap (= 2.1.0)
74 | - Google-Maps-iOS-Utils/QuadTree (= 2.1.0)
75 | - GoogleMaps
76 | - Google-Maps-iOS-Utils/Clustering (2.1.0):
77 | - Google-Maps-iOS-Utils/QuadTree
78 | - GoogleMaps
79 | - Google-Maps-iOS-Utils/Geometry (2.1.0):
80 | - GoogleMaps
81 | - Google-Maps-iOS-Utils/Heatmap (2.1.0):
82 | - Google-Maps-iOS-Utils/QuadTree
83 | - GoogleMaps
84 | - Google-Maps-iOS-Utils/QuadTree (2.1.0):
85 | - GoogleMaps
86 | - GoogleMaps (3.5.0):
87 | - GoogleMaps/Maps (= 3.5.0)
88 | - GoogleMaps/Base (3.5.0)
89 | - GoogleMaps/Maps (3.5.0):
90 | - GoogleMaps/Base
91 | - OpenSSL-Universal (1.0.2.19):
92 | - OpenSSL-Universal/Static (= 1.0.2.19)
93 | - OpenSSL-Universal/Static (1.0.2.19)
94 | - RCTRequired (0.63.3)
95 | - RCTTypeSafety (0.63.3):
96 | - FBLazyVector (= 0.63.3)
97 | - Folly (= 2020.01.13.00)
98 | - RCTRequired (= 0.63.3)
99 | - React-Core (= 0.63.3)
100 | - React (0.63.3):
101 | - React-Core (= 0.63.3)
102 | - React-Core/DevSupport (= 0.63.3)
103 | - React-Core/RCTWebSocket (= 0.63.3)
104 | - React-RCTActionSheet (= 0.63.3)
105 | - React-RCTAnimation (= 0.63.3)
106 | - React-RCTBlob (= 0.63.3)
107 | - React-RCTImage (= 0.63.3)
108 | - React-RCTLinking (= 0.63.3)
109 | - React-RCTNetwork (= 0.63.3)
110 | - React-RCTSettings (= 0.63.3)
111 | - React-RCTText (= 0.63.3)
112 | - React-RCTVibration (= 0.63.3)
113 | - React-callinvoker (0.63.3)
114 | - React-Core (0.63.3):
115 | - Folly (= 2020.01.13.00)
116 | - glog
117 | - React-Core/Default (= 0.63.3)
118 | - React-cxxreact (= 0.63.3)
119 | - React-jsi (= 0.63.3)
120 | - React-jsiexecutor (= 0.63.3)
121 | - Yoga
122 | - React-Core/CoreModulesHeaders (0.63.3):
123 | - Folly (= 2020.01.13.00)
124 | - glog
125 | - React-Core/Default
126 | - React-cxxreact (= 0.63.3)
127 | - React-jsi (= 0.63.3)
128 | - React-jsiexecutor (= 0.63.3)
129 | - Yoga
130 | - React-Core/Default (0.63.3):
131 | - Folly (= 2020.01.13.00)
132 | - glog
133 | - React-cxxreact (= 0.63.3)
134 | - React-jsi (= 0.63.3)
135 | - React-jsiexecutor (= 0.63.3)
136 | - Yoga
137 | - React-Core/DevSupport (0.63.3):
138 | - Folly (= 2020.01.13.00)
139 | - glog
140 | - React-Core/Default (= 0.63.3)
141 | - React-Core/RCTWebSocket (= 0.63.3)
142 | - React-cxxreact (= 0.63.3)
143 | - React-jsi (= 0.63.3)
144 | - React-jsiexecutor (= 0.63.3)
145 | - React-jsinspector (= 0.63.3)
146 | - Yoga
147 | - React-Core/RCTActionSheetHeaders (0.63.3):
148 | - Folly (= 2020.01.13.00)
149 | - glog
150 | - React-Core/Default
151 | - React-cxxreact (= 0.63.3)
152 | - React-jsi (= 0.63.3)
153 | - React-jsiexecutor (= 0.63.3)
154 | - Yoga
155 | - React-Core/RCTAnimationHeaders (0.63.3):
156 | - Folly (= 2020.01.13.00)
157 | - glog
158 | - React-Core/Default
159 | - React-cxxreact (= 0.63.3)
160 | - React-jsi (= 0.63.3)
161 | - React-jsiexecutor (= 0.63.3)
162 | - Yoga
163 | - React-Core/RCTBlobHeaders (0.63.3):
164 | - Folly (= 2020.01.13.00)
165 | - glog
166 | - React-Core/Default
167 | - React-cxxreact (= 0.63.3)
168 | - React-jsi (= 0.63.3)
169 | - React-jsiexecutor (= 0.63.3)
170 | - Yoga
171 | - React-Core/RCTImageHeaders (0.63.3):
172 | - Folly (= 2020.01.13.00)
173 | - glog
174 | - React-Core/Default
175 | - React-cxxreact (= 0.63.3)
176 | - React-jsi (= 0.63.3)
177 | - React-jsiexecutor (= 0.63.3)
178 | - Yoga
179 | - React-Core/RCTLinkingHeaders (0.63.3):
180 | - Folly (= 2020.01.13.00)
181 | - glog
182 | - React-Core/Default
183 | - React-cxxreact (= 0.63.3)
184 | - React-jsi (= 0.63.3)
185 | - React-jsiexecutor (= 0.63.3)
186 | - Yoga
187 | - React-Core/RCTNetworkHeaders (0.63.3):
188 | - Folly (= 2020.01.13.00)
189 | - glog
190 | - React-Core/Default
191 | - React-cxxreact (= 0.63.3)
192 | - React-jsi (= 0.63.3)
193 | - React-jsiexecutor (= 0.63.3)
194 | - Yoga
195 | - React-Core/RCTSettingsHeaders (0.63.3):
196 | - Folly (= 2020.01.13.00)
197 | - glog
198 | - React-Core/Default
199 | - React-cxxreact (= 0.63.3)
200 | - React-jsi (= 0.63.3)
201 | - React-jsiexecutor (= 0.63.3)
202 | - Yoga
203 | - React-Core/RCTTextHeaders (0.63.3):
204 | - Folly (= 2020.01.13.00)
205 | - glog
206 | - React-Core/Default
207 | - React-cxxreact (= 0.63.3)
208 | - React-jsi (= 0.63.3)
209 | - React-jsiexecutor (= 0.63.3)
210 | - Yoga
211 | - React-Core/RCTVibrationHeaders (0.63.3):
212 | - Folly (= 2020.01.13.00)
213 | - glog
214 | - React-Core/Default
215 | - React-cxxreact (= 0.63.3)
216 | - React-jsi (= 0.63.3)
217 | - React-jsiexecutor (= 0.63.3)
218 | - Yoga
219 | - React-Core/RCTWebSocket (0.63.3):
220 | - Folly (= 2020.01.13.00)
221 | - glog
222 | - React-Core/Default (= 0.63.3)
223 | - React-cxxreact (= 0.63.3)
224 | - React-jsi (= 0.63.3)
225 | - React-jsiexecutor (= 0.63.3)
226 | - Yoga
227 | - React-CoreModules (0.63.3):
228 | - FBReactNativeSpec (= 0.63.3)
229 | - Folly (= 2020.01.13.00)
230 | - RCTTypeSafety (= 0.63.3)
231 | - React-Core/CoreModulesHeaders (= 0.63.3)
232 | - React-jsi (= 0.63.3)
233 | - React-RCTImage (= 0.63.3)
234 | - ReactCommon/turbomodule/core (= 0.63.3)
235 | - React-cxxreact (0.63.3):
236 | - boost-for-react-native (= 1.63.0)
237 | - DoubleConversion
238 | - Folly (= 2020.01.13.00)
239 | - glog
240 | - React-callinvoker (= 0.63.3)
241 | - React-jsinspector (= 0.63.3)
242 | - React-jsi (0.63.3):
243 | - boost-for-react-native (= 1.63.0)
244 | - DoubleConversion
245 | - Folly (= 2020.01.13.00)
246 | - glog
247 | - React-jsi/Default (= 0.63.3)
248 | - React-jsi/Default (0.63.3):
249 | - boost-for-react-native (= 1.63.0)
250 | - DoubleConversion
251 | - Folly (= 2020.01.13.00)
252 | - glog
253 | - React-jsiexecutor (0.63.3):
254 | - DoubleConversion
255 | - Folly (= 2020.01.13.00)
256 | - glog
257 | - React-cxxreact (= 0.63.3)
258 | - React-jsi (= 0.63.3)
259 | - React-jsinspector (0.63.3)
260 | - react-native-google-maps (0.27.1):
261 | - Google-Maps-iOS-Utils (= 2.1.0)
262 | - GoogleMaps (= 3.5.0)
263 | - React
264 | - react-native-maps (0.27.1):
265 | - React
266 | - react-native-safe-area-context (3.1.8):
267 | - React-Core
268 | - React-RCTActionSheet (0.63.3):
269 | - React-Core/RCTActionSheetHeaders (= 0.63.3)
270 | - React-RCTAnimation (0.63.3):
271 | - FBReactNativeSpec (= 0.63.3)
272 | - Folly (= 2020.01.13.00)
273 | - RCTTypeSafety (= 0.63.3)
274 | - React-Core/RCTAnimationHeaders (= 0.63.3)
275 | - React-jsi (= 0.63.3)
276 | - ReactCommon/turbomodule/core (= 0.63.3)
277 | - React-RCTBlob (0.63.3):
278 | - FBReactNativeSpec (= 0.63.3)
279 | - Folly (= 2020.01.13.00)
280 | - React-Core/RCTBlobHeaders (= 0.63.3)
281 | - React-Core/RCTWebSocket (= 0.63.3)
282 | - React-jsi (= 0.63.3)
283 | - React-RCTNetwork (= 0.63.3)
284 | - ReactCommon/turbomodule/core (= 0.63.3)
285 | - React-RCTImage (0.63.3):
286 | - FBReactNativeSpec (= 0.63.3)
287 | - Folly (= 2020.01.13.00)
288 | - RCTTypeSafety (= 0.63.3)
289 | - React-Core/RCTImageHeaders (= 0.63.3)
290 | - React-jsi (= 0.63.3)
291 | - React-RCTNetwork (= 0.63.3)
292 | - ReactCommon/turbomodule/core (= 0.63.3)
293 | - React-RCTLinking (0.63.3):
294 | - FBReactNativeSpec (= 0.63.3)
295 | - React-Core/RCTLinkingHeaders (= 0.63.3)
296 | - React-jsi (= 0.63.3)
297 | - ReactCommon/turbomodule/core (= 0.63.3)
298 | - React-RCTNetwork (0.63.3):
299 | - FBReactNativeSpec (= 0.63.3)
300 | - Folly (= 2020.01.13.00)
301 | - RCTTypeSafety (= 0.63.3)
302 | - React-Core/RCTNetworkHeaders (= 0.63.3)
303 | - React-jsi (= 0.63.3)
304 | - ReactCommon/turbomodule/core (= 0.63.3)
305 | - React-RCTSettings (0.63.3):
306 | - FBReactNativeSpec (= 0.63.3)
307 | - Folly (= 2020.01.13.00)
308 | - RCTTypeSafety (= 0.63.3)
309 | - React-Core/RCTSettingsHeaders (= 0.63.3)
310 | - React-jsi (= 0.63.3)
311 | - ReactCommon/turbomodule/core (= 0.63.3)
312 | - React-RCTText (0.63.3):
313 | - React-Core/RCTTextHeaders (= 0.63.3)
314 | - React-RCTVibration (0.63.3):
315 | - FBReactNativeSpec (= 0.63.3)
316 | - Folly (= 2020.01.13.00)
317 | - React-Core/RCTVibrationHeaders (= 0.63.3)
318 | - React-jsi (= 0.63.3)
319 | - ReactCommon/turbomodule/core (= 0.63.3)
320 | - ReactCommon/turbomodule/core (0.63.3):
321 | - DoubleConversion
322 | - Folly (= 2020.01.13.00)
323 | - glog
324 | - React-callinvoker (= 0.63.3)
325 | - React-Core (= 0.63.3)
326 | - React-cxxreact (= 0.63.3)
327 | - React-jsi (= 0.63.3)
328 | - RNCMaskedView (0.1.10):
329 | - React
330 | - RNGestureHandler (1.8.0):
331 | - React
332 | - RNLocalize (1.4.2):
333 | - React-Core
334 | - RNReanimated (1.13.1):
335 | - React
336 | - RNScreens (2.10.1):
337 | - React
338 | - RNVectorIcons (7.1.0):
339 | - React
340 | - Yoga (1.14.0)
341 | - YogaKit (1.18.1):
342 | - Yoga (~> 1.14)
343 |
344 | DEPENDENCIES:
345 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
346 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
347 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
348 | - Flipper (~> 0.54.0)
349 | - Flipper-DoubleConversion (= 1.1.7)
350 | - Flipper-Folly (~> 2.2)
351 | - Flipper-Glog (= 0.3.6)
352 | - Flipper-PeerTalk (~> 0.0.4)
353 | - Flipper-RSocket (~> 1.1)
354 | - FlipperKit (~> 0.54.0)
355 | - FlipperKit/Core (~> 0.54.0)
356 | - FlipperKit/CppBridge (~> 0.54.0)
357 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
358 | - FlipperKit/FBDefines (~> 0.54.0)
359 | - FlipperKit/FKPortForwarding (~> 0.54.0)
360 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
361 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
362 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
363 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
364 | - FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
365 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
366 | - FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
367 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
368 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
369 | - Google-Maps-iOS-Utils
370 | - GoogleMaps
371 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
372 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
373 | - React (from `../node_modules/react-native/`)
374 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
375 | - React-Core (from `../node_modules/react-native/`)
376 | - React-Core/DevSupport (from `../node_modules/react-native/`)
377 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
378 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
379 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
380 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
381 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
382 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
383 | - react-native-google-maps (from `../node_modules/react-native-maps`)
384 | - react-native-maps (from `../node_modules/react-native-maps`)
385 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
386 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
387 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
388 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
389 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
390 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
391 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
392 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
393 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
394 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
395 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
396 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
397 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
398 | - RNLocalize (from `../node_modules/react-native-localize`)
399 | - RNReanimated (from `../node_modules/react-native-reanimated`)
400 | - RNScreens (from `../node_modules/react-native-screens`)
401 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
402 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
403 |
404 | SPEC REPOS:
405 | trunk:
406 | - boost-for-react-native
407 | - CocoaAsyncSocket
408 | - CocoaLibEvent
409 | - Flipper
410 | - Flipper-DoubleConversion
411 | - Flipper-Folly
412 | - Flipper-Glog
413 | - Flipper-PeerTalk
414 | - Flipper-RSocket
415 | - FlipperKit
416 | - Google-Maps-iOS-Utils
417 | - GoogleMaps
418 | - OpenSSL-Universal
419 | - YogaKit
420 |
421 | EXTERNAL SOURCES:
422 | DoubleConversion:
423 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
424 | FBLazyVector:
425 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
426 | FBReactNativeSpec:
427 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
428 | Folly:
429 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
430 | glog:
431 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
432 | RCTRequired:
433 | :path: "../node_modules/react-native/Libraries/RCTRequired"
434 | RCTTypeSafety:
435 | :path: "../node_modules/react-native/Libraries/TypeSafety"
436 | React:
437 | :path: "../node_modules/react-native/"
438 | React-callinvoker:
439 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
440 | React-Core:
441 | :path: "../node_modules/react-native/"
442 | React-CoreModules:
443 | :path: "../node_modules/react-native/React/CoreModules"
444 | React-cxxreact:
445 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
446 | React-jsi:
447 | :path: "../node_modules/react-native/ReactCommon/jsi"
448 | React-jsiexecutor:
449 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
450 | React-jsinspector:
451 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
452 | react-native-google-maps:
453 | :path: "../node_modules/react-native-maps"
454 | react-native-maps:
455 | :path: "../node_modules/react-native-maps"
456 | react-native-safe-area-context:
457 | :path: "../node_modules/react-native-safe-area-context"
458 | React-RCTActionSheet:
459 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
460 | React-RCTAnimation:
461 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
462 | React-RCTBlob:
463 | :path: "../node_modules/react-native/Libraries/Blob"
464 | React-RCTImage:
465 | :path: "../node_modules/react-native/Libraries/Image"
466 | React-RCTLinking:
467 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
468 | React-RCTNetwork:
469 | :path: "../node_modules/react-native/Libraries/Network"
470 | React-RCTSettings:
471 | :path: "../node_modules/react-native/Libraries/Settings"
472 | React-RCTText:
473 | :path: "../node_modules/react-native/Libraries/Text"
474 | React-RCTVibration:
475 | :path: "../node_modules/react-native/Libraries/Vibration"
476 | ReactCommon:
477 | :path: "../node_modules/react-native/ReactCommon"
478 | RNCMaskedView:
479 | :path: "../node_modules/@react-native-community/masked-view"
480 | RNGestureHandler:
481 | :path: "../node_modules/react-native-gesture-handler"
482 | RNLocalize:
483 | :path: "../node_modules/react-native-localize"
484 | RNReanimated:
485 | :path: "../node_modules/react-native-reanimated"
486 | RNScreens:
487 | :path: "../node_modules/react-native-screens"
488 | RNVectorIcons:
489 | :path: "../node_modules/react-native-vector-icons"
490 | Yoga:
491 | :path: "../node_modules/react-native/ReactCommon/yoga"
492 |
493 | SPEC CHECKSUMS:
494 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
495 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
496 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
497 | DoubleConversion: cde416483dac037923206447da6e1454df403714
498 | FBLazyVector: 878b59e31113e289e275165efbe4b54fa614d43d
499 | FBReactNativeSpec: 7da9338acfb98d4ef9e5536805a0704572d33c2f
500 | Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
501 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
502 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
503 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
504 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
505 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
506 | FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
507 | Folly: b73c3869541e86821df3c387eb0af5f65addfab4
508 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
509 | Google-Maps-iOS-Utils: c32891ff472eaaa1fca032beedafa1a013af7875
510 | GoogleMaps: 32ca02de09de357a10ac773f2c70f1986751392d
511 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
512 | RCTRequired: 48884c74035a0b5b76dbb7a998bd93bcfc5f2047
513 | RCTTypeSafety: edf4b618033c2f1c5b7bc3d90d8e085ed95ba2ab
514 | React: f36e90f3ceb976546e97df3403e37d226f79d0e3
515 | React-callinvoker: 18874f621eb96625df7a24a7dc8d6e07391affcd
516 | React-Core: ac3d816b8e3493970153f4aaf0cff18af0bb95e6
517 | React-CoreModules: 4016d3a4e518bcfc4f5a51252b5a05692ca6f0e1
518 | React-cxxreact: ffc9129013b87cb36cf3f30a86695a3c397b0f99
519 | React-jsi: df07aa95b39c5be3e41199921509bfa929ed2b9d
520 | React-jsiexecutor: b56c03e61c0dd5f5801255f2160a815f4a53d451
521 | React-jsinspector: 8e68ffbfe23880d3ee9bafa8be2777f60b25cbe2
522 | react-native-google-maps: 0a989abda71059db2caa98b9dacca7a8f38a47d0
523 | react-native-maps: f4b89da81626ad7f151a8bfcb79733295d31ce5c
524 | react-native-safe-area-context: 79fea126c6830c85f65947c223a5e3058a666937
525 | React-RCTActionSheet: 53ea72699698b0b47a6421cb1c8b4ab215a774aa
526 | React-RCTAnimation: 1befece0b5183c22ae01b966f5583f42e69a83c2
527 | React-RCTBlob: 0b284339cbe4b15705a05e2313a51c6d8b51fa40
528 | React-RCTImage: d1756599ebd4dc2cb19d1682fe67c6b976658387
529 | React-RCTLinking: 9af0a51c6d6a4dd1674daadafffc6d03033a6d18
530 | React-RCTNetwork: 332c83929cc5eae0b3bbca4add1d668e1fc18bda
531 | React-RCTSettings: d6953772cfd55f2c68ad72b7ef29efc7ec49f773
532 | React-RCTText: 65a6de06a7389098ce24340d1d3556015c38f746
533 | React-RCTVibration: 8e9fb25724a0805107fc1acc9075e26f814df454
534 | ReactCommon: 4167844018c9ed375cc01a843e9ee564399e53c3
535 | RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
536 | RNGestureHandler: 7a5833d0f788dbd107fbb913e09aa0c1ff333c39
537 | RNLocalize: 452d4118e338dee1e5ca3fac4d5a11a4ab26a46a
538 | RNReanimated: dd8c286ab5dd4ba36d3a7fef8bff7e08711b5476
539 | RNScreens: b748efec66e095134c7166ca333b628cd7e6f3e2
540 | RNVectorIcons: bc69e6a278b14842063605de32bec61f0b251a59
541 | Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
542 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
543 |
544 | PODFILE CHECKSUM: 65ff98dc693a4f0b03ef61b4cadbbf224970a5f3
545 |
546 | COCOAPODS: 1.10.0
547 |
--------------------------------------------------------------------------------
/ios/Vote.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* VoteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* VoteTests.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 | 147CD69425474239008E4B54 /* logo_vote.png in Resources */ = {isa = PBXBuildFile; fileRef = 147CD69325474239008E4B54 /* logo_vote.png */; };
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 /* VoteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* VoteTests.m */; };
19 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
20 | 97E35E1AA41F41B600B5DE3B /* libPods-Vote.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C27CF3E78AE2C9AAE4AB969A /* libPods-Vote.a */; };
21 | /* End PBXBuildFile section */
22 |
23 | /* Begin PBXContainerItemProxy section */
24 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
25 | isa = PBXContainerItemProxy;
26 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
27 | proxyType = 1;
28 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
29 | remoteInfo = Vote;
30 | };
31 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
32 | isa = PBXContainerItemProxy;
33 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
34 | proxyType = 1;
35 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
36 | remoteInfo = "Vote-tvOS";
37 | };
38 | /* End PBXContainerItemProxy section */
39 |
40 | /* Begin PBXFileReference section */
41 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
42 | 00E356EE1AD99517003FC87E /* VoteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VoteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
43 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
44 | 00E356F21AD99517003FC87E /* VoteTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VoteTests.m; sourceTree = ""; };
45 | 13B07F961A680F5B00A75B9A /* Vote.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Vote.app; sourceTree = BUILT_PRODUCTS_DIR; };
46 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Vote/AppDelegate.h; sourceTree = ""; };
47 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Vote/AppDelegate.m; sourceTree = ""; };
48 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Vote/Images.xcassets; sourceTree = ""; };
49 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Vote/Info.plist; sourceTree = ""; };
50 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Vote/main.m; sourceTree = ""; };
51 | 147CD69325474239008E4B54 /* logo_vote.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo_vote.png; sourceTree = ""; };
52 | 2D02E47B1E0B4A5D006451C7 /* Vote-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Vote-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
53 | 2D02E4901E0B4A5D006451C7 /* Vote-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Vote-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
54 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Vote/LaunchScreen.storyboard; sourceTree = ""; };
55 | 84DB052E8BA5327FE08C496F /* Pods-Vote.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vote.release.xcconfig"; path = "Target Support Files/Pods-Vote/Pods-Vote.release.xcconfig"; sourceTree = ""; };
56 | 9B7FF18A046E209EC4CF0666 /* Pods-Vote.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vote.debug.xcconfig"; path = "Target Support Files/Pods-Vote/Pods-Vote.debug.xcconfig"; sourceTree = ""; };
57 | C27CF3E78AE2C9AAE4AB969A /* libPods-Vote.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Vote.a"; sourceTree = BUILT_PRODUCTS_DIR; };
58 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
59 | 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; };
60 | /* End PBXFileReference section */
61 |
62 | /* Begin PBXFrameworksBuildPhase section */
63 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
64 | isa = PBXFrameworksBuildPhase;
65 | buildActionMask = 2147483647;
66 | files = (
67 | );
68 | runOnlyForDeploymentPostprocessing = 0;
69 | };
70 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
71 | isa = PBXFrameworksBuildPhase;
72 | buildActionMask = 2147483647;
73 | files = (
74 | 97E35E1AA41F41B600B5DE3B /* libPods-Vote.a in Frameworks */,
75 | );
76 | runOnlyForDeploymentPostprocessing = 0;
77 | };
78 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
79 | isa = PBXFrameworksBuildPhase;
80 | buildActionMask = 2147483647;
81 | files = (
82 | );
83 | runOnlyForDeploymentPostprocessing = 0;
84 | };
85 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
86 | isa = PBXFrameworksBuildPhase;
87 | buildActionMask = 2147483647;
88 | files = (
89 | );
90 | runOnlyForDeploymentPostprocessing = 0;
91 | };
92 | /* End PBXFrameworksBuildPhase section */
93 |
94 | /* Begin PBXGroup section */
95 | 00E356EF1AD99517003FC87E /* VoteTests */ = {
96 | isa = PBXGroup;
97 | children = (
98 | 00E356F21AD99517003FC87E /* VoteTests.m */,
99 | 00E356F01AD99517003FC87E /* Supporting Files */,
100 | );
101 | path = VoteTests;
102 | sourceTree = "";
103 | };
104 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
105 | isa = PBXGroup;
106 | children = (
107 | 00E356F11AD99517003FC87E /* Info.plist */,
108 | );
109 | name = "Supporting Files";
110 | sourceTree = "";
111 | };
112 | 0C4BDB3AE0C0100D17EC6466 /* Pods */ = {
113 | isa = PBXGroup;
114 | children = (
115 | 9B7FF18A046E209EC4CF0666 /* Pods-Vote.debug.xcconfig */,
116 | 84DB052E8BA5327FE08C496F /* Pods-Vote.release.xcconfig */,
117 | );
118 | path = Pods;
119 | sourceTree = "";
120 | };
121 | 13B07FAE1A68108700A75B9A /* Vote */ = {
122 | isa = PBXGroup;
123 | children = (
124 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
125 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
126 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
127 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
128 | 147CD69325474239008E4B54 /* logo_vote.png */,
129 | 13B07FB61A68108700A75B9A /* Info.plist */,
130 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
131 | 13B07FB71A68108700A75B9A /* main.m */,
132 | );
133 | name = Vote;
134 | sourceTree = "";
135 | };
136 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
137 | isa = PBXGroup;
138 | children = (
139 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
140 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
141 | C27CF3E78AE2C9AAE4AB969A /* libPods-Vote.a */,
142 | );
143 | name = Frameworks;
144 | sourceTree = "";
145 | };
146 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
147 | isa = PBXGroup;
148 | children = (
149 | );
150 | name = Libraries;
151 | sourceTree = "";
152 | };
153 | 83CBB9F61A601CBA00E9B192 = {
154 | isa = PBXGroup;
155 | children = (
156 | 13B07FAE1A68108700A75B9A /* Vote */,
157 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
158 | 00E356EF1AD99517003FC87E /* VoteTests */,
159 | 83CBBA001A601CBA00E9B192 /* Products */,
160 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
161 | 0C4BDB3AE0C0100D17EC6466 /* Pods */,
162 | );
163 | indentWidth = 2;
164 | sourceTree = "";
165 | tabWidth = 2;
166 | usesTabs = 0;
167 | };
168 | 83CBBA001A601CBA00E9B192 /* Products */ = {
169 | isa = PBXGroup;
170 | children = (
171 | 13B07F961A680F5B00A75B9A /* Vote.app */,
172 | 00E356EE1AD99517003FC87E /* VoteTests.xctest */,
173 | 2D02E47B1E0B4A5D006451C7 /* Vote-tvOS.app */,
174 | 2D02E4901E0B4A5D006451C7 /* Vote-tvOSTests.xctest */,
175 | );
176 | name = Products;
177 | sourceTree = "";
178 | };
179 | /* End PBXGroup section */
180 |
181 | /* Begin PBXNativeTarget section */
182 | 00E356ED1AD99517003FC87E /* VoteTests */ = {
183 | isa = PBXNativeTarget;
184 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VoteTests" */;
185 | buildPhases = (
186 | 00E356EA1AD99517003FC87E /* Sources */,
187 | 00E356EB1AD99517003FC87E /* Frameworks */,
188 | 00E356EC1AD99517003FC87E /* Resources */,
189 | );
190 | buildRules = (
191 | );
192 | dependencies = (
193 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
194 | );
195 | name = VoteTests;
196 | productName = VoteTests;
197 | productReference = 00E356EE1AD99517003FC87E /* VoteTests.xctest */;
198 | productType = "com.apple.product-type.bundle.unit-test";
199 | };
200 | 13B07F861A680F5B00A75B9A /* Vote */ = {
201 | isa = PBXNativeTarget;
202 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Vote" */;
203 | buildPhases = (
204 | 554B70C928E01C2E0E177ED3 /* [CP] Check Pods Manifest.lock */,
205 | FD10A7F022414F080027D42C /* Start Packager */,
206 | 13B07F871A680F5B00A75B9A /* Sources */,
207 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
208 | 13B07F8E1A680F5B00A75B9A /* Resources */,
209 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
210 | 4ED27B7A60987D235307DF6D /* [CP] Copy Pods Resources */,
211 | );
212 | buildRules = (
213 | );
214 | dependencies = (
215 | );
216 | name = Vote;
217 | productName = Vote;
218 | productReference = 13B07F961A680F5B00A75B9A /* Vote.app */;
219 | productType = "com.apple.product-type.application";
220 | };
221 | 2D02E47A1E0B4A5D006451C7 /* Vote-tvOS */ = {
222 | isa = PBXNativeTarget;
223 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Vote-tvOS" */;
224 | buildPhases = (
225 | FD10A7F122414F3F0027D42C /* Start Packager */,
226 | 2D02E4771E0B4A5D006451C7 /* Sources */,
227 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
228 | 2D02E4791E0B4A5D006451C7 /* Resources */,
229 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
230 | );
231 | buildRules = (
232 | );
233 | dependencies = (
234 | );
235 | name = "Vote-tvOS";
236 | productName = "Vote-tvOS";
237 | productReference = 2D02E47B1E0B4A5D006451C7 /* Vote-tvOS.app */;
238 | productType = "com.apple.product-type.application";
239 | };
240 | 2D02E48F1E0B4A5D006451C7 /* Vote-tvOSTests */ = {
241 | isa = PBXNativeTarget;
242 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Vote-tvOSTests" */;
243 | buildPhases = (
244 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
245 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
246 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
247 | );
248 | buildRules = (
249 | );
250 | dependencies = (
251 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
252 | );
253 | name = "Vote-tvOSTests";
254 | productName = "Vote-tvOSTests";
255 | productReference = 2D02E4901E0B4A5D006451C7 /* Vote-tvOSTests.xctest */;
256 | productType = "com.apple.product-type.bundle.unit-test";
257 | };
258 | /* End PBXNativeTarget section */
259 |
260 | /* Begin PBXProject section */
261 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
262 | isa = PBXProject;
263 | attributes = {
264 | LastUpgradeCheck = 1130;
265 | TargetAttributes = {
266 | 00E356ED1AD99517003FC87E = {
267 | CreatedOnToolsVersion = 6.2;
268 | TestTargetID = 13B07F861A680F5B00A75B9A;
269 | };
270 | 13B07F861A680F5B00A75B9A = {
271 | LastSwiftMigration = 1120;
272 | };
273 | 2D02E47A1E0B4A5D006451C7 = {
274 | CreatedOnToolsVersion = 8.2.1;
275 | ProvisioningStyle = Automatic;
276 | };
277 | 2D02E48F1E0B4A5D006451C7 = {
278 | CreatedOnToolsVersion = 8.2.1;
279 | ProvisioningStyle = Automatic;
280 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
281 | };
282 | };
283 | };
284 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Vote" */;
285 | compatibilityVersion = "Xcode 3.2";
286 | developmentRegion = en;
287 | hasScannedForEncodings = 0;
288 | knownRegions = (
289 | en,
290 | Base,
291 | );
292 | mainGroup = 83CBB9F61A601CBA00E9B192;
293 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
294 | projectDirPath = "";
295 | projectRoot = "";
296 | targets = (
297 | 13B07F861A680F5B00A75B9A /* Vote */,
298 | 00E356ED1AD99517003FC87E /* VoteTests */,
299 | 2D02E47A1E0B4A5D006451C7 /* Vote-tvOS */,
300 | 2D02E48F1E0B4A5D006451C7 /* Vote-tvOSTests */,
301 | );
302 | };
303 | /* End PBXProject section */
304 |
305 | /* Begin PBXResourcesBuildPhase section */
306 | 00E356EC1AD99517003FC87E /* Resources */ = {
307 | isa = PBXResourcesBuildPhase;
308 | buildActionMask = 2147483647;
309 | files = (
310 | );
311 | runOnlyForDeploymentPostprocessing = 0;
312 | };
313 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
314 | isa = PBXResourcesBuildPhase;
315 | buildActionMask = 2147483647;
316 | files = (
317 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
318 | 147CD69425474239008E4B54 /* logo_vote.png in Resources */,
319 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
320 | );
321 | runOnlyForDeploymentPostprocessing = 0;
322 | };
323 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
324 | isa = PBXResourcesBuildPhase;
325 | buildActionMask = 2147483647;
326 | files = (
327 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
328 | );
329 | runOnlyForDeploymentPostprocessing = 0;
330 | };
331 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
332 | isa = PBXResourcesBuildPhase;
333 | buildActionMask = 2147483647;
334 | files = (
335 | );
336 | runOnlyForDeploymentPostprocessing = 0;
337 | };
338 | /* End PBXResourcesBuildPhase section */
339 |
340 | /* Begin PBXShellScriptBuildPhase section */
341 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
342 | isa = PBXShellScriptBuildPhase;
343 | buildActionMask = 2147483647;
344 | files = (
345 | );
346 | inputPaths = (
347 | );
348 | name = "Bundle React Native code and images";
349 | outputPaths = (
350 | );
351 | runOnlyForDeploymentPostprocessing = 0;
352 | shellPath = /bin/sh;
353 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
354 | };
355 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
356 | isa = PBXShellScriptBuildPhase;
357 | buildActionMask = 2147483647;
358 | files = (
359 | );
360 | inputPaths = (
361 | );
362 | name = "Bundle React Native Code And Images";
363 | outputPaths = (
364 | );
365 | runOnlyForDeploymentPostprocessing = 0;
366 | shellPath = /bin/sh;
367 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
368 | };
369 | 4ED27B7A60987D235307DF6D /* [CP] Copy Pods Resources */ = {
370 | isa = PBXShellScriptBuildPhase;
371 | buildActionMask = 2147483647;
372 | files = (
373 | );
374 | inputPaths = (
375 | "${PODS_ROOT}/Target Support Files/Pods-Vote/Pods-Vote-resources.sh",
376 | "${PODS_ROOT}/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle",
377 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
378 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
379 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
380 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
381 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
382 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
383 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
384 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
385 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
386 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
387 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
388 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
389 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
390 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
391 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
392 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
393 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
394 | );
395 | name = "[CP] Copy Pods Resources";
396 | outputPaths = (
397 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleMaps.bundle",
398 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
399 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
400 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
401 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
402 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
403 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
404 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
405 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
406 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
407 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
408 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
409 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
410 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
411 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
412 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
413 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
414 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
415 | );
416 | runOnlyForDeploymentPostprocessing = 0;
417 | shellPath = /bin/sh;
418 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Vote/Pods-Vote-resources.sh\"\n";
419 | showEnvVarsInLog = 0;
420 | };
421 | 554B70C928E01C2E0E177ED3 /* [CP] Check Pods Manifest.lock */ = {
422 | isa = PBXShellScriptBuildPhase;
423 | buildActionMask = 2147483647;
424 | files = (
425 | );
426 | inputFileListPaths = (
427 | );
428 | inputPaths = (
429 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
430 | "${PODS_ROOT}/Manifest.lock",
431 | );
432 | name = "[CP] Check Pods Manifest.lock";
433 | outputFileListPaths = (
434 | );
435 | outputPaths = (
436 | "$(DERIVED_FILE_DIR)/Pods-Vote-checkManifestLockResult.txt",
437 | );
438 | runOnlyForDeploymentPostprocessing = 0;
439 | shellPath = /bin/sh;
440 | 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";
441 | showEnvVarsInLog = 0;
442 | };
443 | FD10A7F022414F080027D42C /* Start Packager */ = {
444 | isa = PBXShellScriptBuildPhase;
445 | buildActionMask = 2147483647;
446 | files = (
447 | );
448 | inputFileListPaths = (
449 | );
450 | inputPaths = (
451 | );
452 | name = "Start Packager";
453 | outputFileListPaths = (
454 | );
455 | outputPaths = (
456 | );
457 | runOnlyForDeploymentPostprocessing = 0;
458 | shellPath = /bin/sh;
459 | 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";
460 | showEnvVarsInLog = 0;
461 | };
462 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
463 | isa = PBXShellScriptBuildPhase;
464 | buildActionMask = 2147483647;
465 | files = (
466 | );
467 | inputFileListPaths = (
468 | );
469 | inputPaths = (
470 | );
471 | name = "Start Packager";
472 | outputFileListPaths = (
473 | );
474 | outputPaths = (
475 | );
476 | runOnlyForDeploymentPostprocessing = 0;
477 | shellPath = /bin/sh;
478 | 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";
479 | showEnvVarsInLog = 0;
480 | };
481 | /* End PBXShellScriptBuildPhase section */
482 |
483 | /* Begin PBXSourcesBuildPhase section */
484 | 00E356EA1AD99517003FC87E /* Sources */ = {
485 | isa = PBXSourcesBuildPhase;
486 | buildActionMask = 2147483647;
487 | files = (
488 | 00E356F31AD99517003FC87E /* VoteTests.m in Sources */,
489 | );
490 | runOnlyForDeploymentPostprocessing = 0;
491 | };
492 | 13B07F871A680F5B00A75B9A /* Sources */ = {
493 | isa = PBXSourcesBuildPhase;
494 | buildActionMask = 2147483647;
495 | files = (
496 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
497 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
498 | );
499 | runOnlyForDeploymentPostprocessing = 0;
500 | };
501 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
502 | isa = PBXSourcesBuildPhase;
503 | buildActionMask = 2147483647;
504 | files = (
505 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
506 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
507 | );
508 | runOnlyForDeploymentPostprocessing = 0;
509 | };
510 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
511 | isa = PBXSourcesBuildPhase;
512 | buildActionMask = 2147483647;
513 | files = (
514 | 2DCD954D1E0B4F2C00145EB5 /* VoteTests.m in Sources */,
515 | );
516 | runOnlyForDeploymentPostprocessing = 0;
517 | };
518 | /* End PBXSourcesBuildPhase section */
519 |
520 | /* Begin PBXTargetDependency section */
521 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
522 | isa = PBXTargetDependency;
523 | target = 13B07F861A680F5B00A75B9A /* Vote */;
524 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
525 | };
526 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
527 | isa = PBXTargetDependency;
528 | target = 2D02E47A1E0B4A5D006451C7 /* Vote-tvOS */;
529 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
530 | };
531 | /* End PBXTargetDependency section */
532 |
533 | /* Begin XCBuildConfiguration section */
534 | 00E356F61AD99517003FC87E /* Debug */ = {
535 | isa = XCBuildConfiguration;
536 | buildSettings = {
537 | BUNDLE_LOADER = "$(TEST_HOST)";
538 | GCC_PREPROCESSOR_DEFINITIONS = (
539 | "DEBUG=1",
540 | "$(inherited)",
541 | );
542 | INFOPLIST_FILE = VoteTests/Info.plist;
543 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
544 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
545 | OTHER_LDFLAGS = (
546 | "-ObjC",
547 | "-lc++",
548 | "$(inherited)",
549 | );
550 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
551 | PRODUCT_NAME = "$(TARGET_NAME)";
552 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Vote.app/Vote";
553 | };
554 | name = Debug;
555 | };
556 | 00E356F71AD99517003FC87E /* Release */ = {
557 | isa = XCBuildConfiguration;
558 | buildSettings = {
559 | BUNDLE_LOADER = "$(TEST_HOST)";
560 | COPY_PHASE_STRIP = NO;
561 | INFOPLIST_FILE = VoteTests/Info.plist;
562 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
563 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
564 | OTHER_LDFLAGS = (
565 | "-ObjC",
566 | "-lc++",
567 | "$(inherited)",
568 | );
569 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
570 | PRODUCT_NAME = "$(TARGET_NAME)";
571 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Vote.app/Vote";
572 | };
573 | name = Release;
574 | };
575 | 13B07F941A680F5B00A75B9A /* Debug */ = {
576 | isa = XCBuildConfiguration;
577 | baseConfigurationReference = 9B7FF18A046E209EC4CF0666 /* Pods-Vote.debug.xcconfig */;
578 | buildSettings = {
579 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
580 | CLANG_ENABLE_MODULES = YES;
581 | CURRENT_PROJECT_VERSION = 1;
582 | ENABLE_BITCODE = NO;
583 | INFOPLIST_FILE = Vote/Info.plist;
584 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
585 | OTHER_LDFLAGS = (
586 | "$(inherited)",
587 | "-ObjC",
588 | "-lc++",
589 | );
590 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
591 | PRODUCT_NAME = Vote;
592 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
593 | SWIFT_VERSION = 5.0;
594 | VERSIONING_SYSTEM = "apple-generic";
595 | };
596 | name = Debug;
597 | };
598 | 13B07F951A680F5B00A75B9A /* Release */ = {
599 | isa = XCBuildConfiguration;
600 | baseConfigurationReference = 84DB052E8BA5327FE08C496F /* Pods-Vote.release.xcconfig */;
601 | buildSettings = {
602 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
603 | CLANG_ENABLE_MODULES = YES;
604 | CURRENT_PROJECT_VERSION = 1;
605 | INFOPLIST_FILE = Vote/Info.plist;
606 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
607 | OTHER_LDFLAGS = (
608 | "$(inherited)",
609 | "-ObjC",
610 | "-lc++",
611 | );
612 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
613 | PRODUCT_NAME = Vote;
614 | SWIFT_VERSION = 5.0;
615 | VERSIONING_SYSTEM = "apple-generic";
616 | };
617 | name = Release;
618 | };
619 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
620 | isa = XCBuildConfiguration;
621 | buildSettings = {
622 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
623 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
624 | CLANG_ANALYZER_NONNULL = YES;
625 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
626 | CLANG_WARN_INFINITE_RECURSION = YES;
627 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
628 | DEBUG_INFORMATION_FORMAT = dwarf;
629 | ENABLE_TESTABILITY = YES;
630 | GCC_NO_COMMON_BLOCKS = YES;
631 | INFOPLIST_FILE = "Vote-tvOS/Info.plist";
632 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
633 | OTHER_LDFLAGS = (
634 | "$(inherited)",
635 | "-ObjC",
636 | "-lc++",
637 | );
638 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.Vote-tvOS";
639 | PRODUCT_NAME = "$(TARGET_NAME)";
640 | SDKROOT = appletvos;
641 | TARGETED_DEVICE_FAMILY = 3;
642 | TVOS_DEPLOYMENT_TARGET = 10.0;
643 | };
644 | name = Debug;
645 | };
646 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
647 | isa = XCBuildConfiguration;
648 | buildSettings = {
649 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
650 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
651 | CLANG_ANALYZER_NONNULL = YES;
652 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
653 | CLANG_WARN_INFINITE_RECURSION = YES;
654 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
655 | COPY_PHASE_STRIP = NO;
656 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
657 | GCC_NO_COMMON_BLOCKS = YES;
658 | INFOPLIST_FILE = "Vote-tvOS/Info.plist";
659 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
660 | OTHER_LDFLAGS = (
661 | "$(inherited)",
662 | "-ObjC",
663 | "-lc++",
664 | );
665 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.Vote-tvOS";
666 | PRODUCT_NAME = "$(TARGET_NAME)";
667 | SDKROOT = appletvos;
668 | TARGETED_DEVICE_FAMILY = 3;
669 | TVOS_DEPLOYMENT_TARGET = 10.0;
670 | };
671 | name = Release;
672 | };
673 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
674 | isa = XCBuildConfiguration;
675 | buildSettings = {
676 | BUNDLE_LOADER = "$(TEST_HOST)";
677 | CLANG_ANALYZER_NONNULL = YES;
678 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
679 | CLANG_WARN_INFINITE_RECURSION = YES;
680 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
681 | DEBUG_INFORMATION_FORMAT = dwarf;
682 | ENABLE_TESTABILITY = YES;
683 | GCC_NO_COMMON_BLOCKS = YES;
684 | INFOPLIST_FILE = "Vote-tvOSTests/Info.plist";
685 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
686 | OTHER_LDFLAGS = (
687 | "$(inherited)",
688 | "-ObjC",
689 | "-lc++",
690 | );
691 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.Vote-tvOSTests";
692 | PRODUCT_NAME = "$(TARGET_NAME)";
693 | SDKROOT = appletvos;
694 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Vote-tvOS.app/Vote-tvOS";
695 | TVOS_DEPLOYMENT_TARGET = 10.1;
696 | };
697 | name = Debug;
698 | };
699 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
700 | isa = XCBuildConfiguration;
701 | buildSettings = {
702 | BUNDLE_LOADER = "$(TEST_HOST)";
703 | CLANG_ANALYZER_NONNULL = YES;
704 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
705 | CLANG_WARN_INFINITE_RECURSION = YES;
706 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
707 | COPY_PHASE_STRIP = NO;
708 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
709 | GCC_NO_COMMON_BLOCKS = YES;
710 | INFOPLIST_FILE = "Vote-tvOSTests/Info.plist";
711 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
712 | OTHER_LDFLAGS = (
713 | "$(inherited)",
714 | "-ObjC",
715 | "-lc++",
716 | );
717 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.Vote-tvOSTests";
718 | PRODUCT_NAME = "$(TARGET_NAME)";
719 | SDKROOT = appletvos;
720 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Vote-tvOS.app/Vote-tvOS";
721 | TVOS_DEPLOYMENT_TARGET = 10.1;
722 | };
723 | name = Release;
724 | };
725 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
726 | isa = XCBuildConfiguration;
727 | buildSettings = {
728 | ALWAYS_SEARCH_USER_PATHS = NO;
729 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
730 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
731 | CLANG_CXX_LIBRARY = "libc++";
732 | CLANG_ENABLE_MODULES = YES;
733 | CLANG_ENABLE_OBJC_ARC = YES;
734 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
735 | CLANG_WARN_BOOL_CONVERSION = YES;
736 | CLANG_WARN_COMMA = YES;
737 | CLANG_WARN_CONSTANT_CONVERSION = YES;
738 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
739 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
740 | CLANG_WARN_EMPTY_BODY = YES;
741 | CLANG_WARN_ENUM_CONVERSION = YES;
742 | CLANG_WARN_INFINITE_RECURSION = YES;
743 | CLANG_WARN_INT_CONVERSION = YES;
744 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
745 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
746 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
747 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
748 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
749 | CLANG_WARN_STRICT_PROTOTYPES = YES;
750 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
751 | CLANG_WARN_UNREACHABLE_CODE = YES;
752 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
753 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
754 | COPY_PHASE_STRIP = NO;
755 | ENABLE_STRICT_OBJC_MSGSEND = YES;
756 | ENABLE_TESTABILITY = YES;
757 | GCC_C_LANGUAGE_STANDARD = gnu99;
758 | GCC_DYNAMIC_NO_PIC = NO;
759 | GCC_NO_COMMON_BLOCKS = YES;
760 | GCC_OPTIMIZATION_LEVEL = 0;
761 | GCC_PREPROCESSOR_DEFINITIONS = (
762 | "DEBUG=1",
763 | "$(inherited)",
764 | );
765 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
766 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
767 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
768 | GCC_WARN_UNDECLARED_SELECTOR = YES;
769 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
770 | GCC_WARN_UNUSED_FUNCTION = YES;
771 | GCC_WARN_UNUSED_VARIABLE = YES;
772 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
773 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
774 | LIBRARY_SEARCH_PATHS = (
775 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
776 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
777 | "\"$(inherited)\"",
778 | );
779 | MTL_ENABLE_DEBUG_INFO = YES;
780 | ONLY_ACTIVE_ARCH = YES;
781 | SDKROOT = iphoneos;
782 | };
783 | name = Debug;
784 | };
785 | 83CBBA211A601CBA00E9B192 /* Release */ = {
786 | isa = XCBuildConfiguration;
787 | buildSettings = {
788 | ALWAYS_SEARCH_USER_PATHS = NO;
789 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
790 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
791 | CLANG_CXX_LIBRARY = "libc++";
792 | CLANG_ENABLE_MODULES = YES;
793 | CLANG_ENABLE_OBJC_ARC = YES;
794 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
795 | CLANG_WARN_BOOL_CONVERSION = YES;
796 | CLANG_WARN_COMMA = YES;
797 | CLANG_WARN_CONSTANT_CONVERSION = YES;
798 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
799 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
800 | CLANG_WARN_EMPTY_BODY = YES;
801 | CLANG_WARN_ENUM_CONVERSION = YES;
802 | CLANG_WARN_INFINITE_RECURSION = YES;
803 | CLANG_WARN_INT_CONVERSION = YES;
804 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
805 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
806 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
807 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
808 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
809 | CLANG_WARN_STRICT_PROTOTYPES = YES;
810 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
811 | CLANG_WARN_UNREACHABLE_CODE = YES;
812 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
813 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
814 | COPY_PHASE_STRIP = YES;
815 | ENABLE_NS_ASSERTIONS = NO;
816 | ENABLE_STRICT_OBJC_MSGSEND = YES;
817 | GCC_C_LANGUAGE_STANDARD = gnu99;
818 | GCC_NO_COMMON_BLOCKS = YES;
819 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
820 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
821 | GCC_WARN_UNDECLARED_SELECTOR = YES;
822 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
823 | GCC_WARN_UNUSED_FUNCTION = YES;
824 | GCC_WARN_UNUSED_VARIABLE = YES;
825 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
826 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
827 | LIBRARY_SEARCH_PATHS = (
828 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
829 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
830 | "\"$(inherited)\"",
831 | );
832 | MTL_ENABLE_DEBUG_INFO = NO;
833 | SDKROOT = iphoneos;
834 | VALIDATE_PRODUCT = YES;
835 | };
836 | name = Release;
837 | };
838 | /* End XCBuildConfiguration section */
839 |
840 | /* Begin XCConfigurationList section */
841 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "VoteTests" */ = {
842 | isa = XCConfigurationList;
843 | buildConfigurations = (
844 | 00E356F61AD99517003FC87E /* Debug */,
845 | 00E356F71AD99517003FC87E /* Release */,
846 | );
847 | defaultConfigurationIsVisible = 0;
848 | defaultConfigurationName = Release;
849 | };
850 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Vote" */ = {
851 | isa = XCConfigurationList;
852 | buildConfigurations = (
853 | 13B07F941A680F5B00A75B9A /* Debug */,
854 | 13B07F951A680F5B00A75B9A /* Release */,
855 | );
856 | defaultConfigurationIsVisible = 0;
857 | defaultConfigurationName = Release;
858 | };
859 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Vote-tvOS" */ = {
860 | isa = XCConfigurationList;
861 | buildConfigurations = (
862 | 2D02E4971E0B4A5E006451C7 /* Debug */,
863 | 2D02E4981E0B4A5E006451C7 /* Release */,
864 | );
865 | defaultConfigurationIsVisible = 0;
866 | defaultConfigurationName = Release;
867 | };
868 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Vote-tvOSTests" */ = {
869 | isa = XCConfigurationList;
870 | buildConfigurations = (
871 | 2D02E4991E0B4A5E006451C7 /* Debug */,
872 | 2D02E49A1E0B4A5E006451C7 /* Release */,
873 | );
874 | defaultConfigurationIsVisible = 0;
875 | defaultConfigurationName = Release;
876 | };
877 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Vote" */ = {
878 | isa = XCConfigurationList;
879 | buildConfigurations = (
880 | 83CBBA201A601CBA00E9B192 /* Debug */,
881 | 83CBBA211A601CBA00E9B192 /* Release */,
882 | );
883 | defaultConfigurationIsVisible = 0;
884 | defaultConfigurationName = Release;
885 | };
886 | /* End XCConfigurationList section */
887 | };
888 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
889 | }
890 |
--------------------------------------------------------------------------------