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.example.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 |
--------------------------------------------------------------------------------
/example/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if "%ERRORLEVEL%"=="0" goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/example/App.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | * @flow strict-local
7 | */
8 |
9 | import React from 'react';
10 | import type {Node} from 'react';
11 | import GlobalFont from 'react-native-global-font';
12 | import {
13 | SafeAreaView,
14 | ScrollView,
15 | StatusBar,
16 | StyleSheet,
17 | Text,
18 | useColorScheme,
19 | View,
20 | TextInput,
21 | } from 'react-native';
22 |
23 | import {
24 | Colors,
25 | DebugInstructions,
26 | Header,
27 | LearnMoreLinks,
28 | ReloadInstructions,
29 | } from 'react-native/Libraries/NewAppScreen';
30 |
31 | const Section = ({children, title}): Node => {
32 | const isDarkMode = useColorScheme() === 'dark';
33 | return (
34 |
35 |
42 | {title}
43 |
44 |
51 | {children}
52 |
53 |
54 | );
55 | };
56 |
57 | const App: () => Node = () => {
58 | const isDarkMode = useColorScheme() === 'dark';
59 | let fontName = 'Carnivalee Freakshow';
60 | GlobalFont.applyGlobal(fontName);
61 | const backgroundStyle = {
62 | backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
63 | };
64 |
65 | return (
66 |
67 |
68 |
71 |
72 |
76 |
77 |
78 |
79 | Edit App.js to change this
80 | screen and then come back to see your edits.
81 |
82 |
85 |
88 |
89 | Read the docs to discover what to do next:
90 |
91 |
92 |
93 |
94 |
95 | );
96 | };
97 |
98 | const styles = StyleSheet.create({
99 | sectionContainer: {
100 | marginTop: 32,
101 | paddingHorizontal: 24,
102 | },
103 | sectionTitle: {
104 | fontSize: 24,
105 | fontWeight: '600',
106 | },
107 | sectionDescription: {
108 | marginTop: 8,
109 | fontSize: 18,
110 | fontWeight: '400',
111 | },
112 | highlight: {
113 | fontWeight: '700',
114 | },
115 | });
116 |
117 | export default App;
118 |
--------------------------------------------------------------------------------
/example/android/app/src/debug/java/com/example/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.example;
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 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.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 |
--------------------------------------------------------------------------------
/example/ios/example/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
24 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/example/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 |
86 | # Determine the Java command to use to start the JVM.
87 | if [ -n "$JAVA_HOME" ] ; then
88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
89 | # IBM's JDK on AIX uses strange locations for the executables
90 | JAVACMD="$JAVA_HOME/jre/sh/java"
91 | else
92 | JAVACMD="$JAVA_HOME/bin/java"
93 | fi
94 | if [ ! -x "$JAVACMD" ] ; then
95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
96 |
97 | Please set the JAVA_HOME variable in your environment to match the
98 | location of your Java installation."
99 | fi
100 | else
101 | JAVACMD="java"
102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
103 |
104 | Please set the JAVA_HOME variable in your environment to match the
105 | location of your Java installation."
106 | fi
107 |
108 | # Increase the maximum file descriptors if we can.
109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
110 | MAX_FD_LIMIT=`ulimit -H -n`
111 | if [ $? -eq 0 ] ; then
112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
113 | MAX_FD="$MAX_FD_LIMIT"
114 | fi
115 | ulimit -n $MAX_FD
116 | if [ $? -ne 0 ] ; then
117 | warn "Could not set maximum file descriptor limit: $MAX_FD"
118 | fi
119 | else
120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
121 | fi
122 | fi
123 |
124 | # For Darwin, add options to specify how the application appears in the dock
125 | if $darwin; then
126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
127 | fi
128 |
129 | # For Cygwin or MSYS, switch paths to Windows format before running java
130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133 |
134 | JAVACMD=`cygpath --unix "$JAVACMD"`
135 |
136 | # We build the pattern for arguments to be converted via cygpath
137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
138 | SEP=""
139 | for dir in $ROOTDIRSRAW ; do
140 | ROOTDIRS="$ROOTDIRS$SEP$dir"
141 | SEP="|"
142 | done
143 | OURCYGPATTERN="(^($ROOTDIRS))"
144 | # Add a user-defined pattern to the cygpath arguments
145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
147 | fi
148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
149 | i=0
150 | for arg in "$@" ; do
151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
153 |
154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
156 | else
157 | eval `echo args$i`="\"$arg\""
158 | fi
159 | i=`expr $i + 1`
160 | done
161 | case $i in
162 | 0) set -- ;;
163 | 1) set -- "$args0" ;;
164 | 2) set -- "$args0" "$args1" ;;
165 | 3) set -- "$args0" "$args1" "$args2" ;;
166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
172 | esac
173 | fi
174 |
175 | # Escape application args
176 | save () {
177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
178 | echo " "
179 | }
180 | APP_ARGS=`save "$@"`
181 |
182 | # Collect all arguments for the java command, following the shell quoting and substitution rules
183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
184 |
185 | exec "$JAVACMD" "$@"
186 |
--------------------------------------------------------------------------------
/example/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 | ndkVersion rootProject.ext.ndkVersion
125 |
126 | compileSdkVersion rootProject.ext.compileSdkVersion
127 |
128 | compileOptions {
129 | sourceCompatibility JavaVersion.VERSION_1_8
130 | targetCompatibility JavaVersion.VERSION_1_8
131 | }
132 |
133 | defaultConfig {
134 | applicationId "com.example"
135 | minSdkVersion rootProject.ext.minSdkVersion
136 | targetSdkVersion rootProject.ext.targetSdkVersion
137 | versionCode 1
138 | versionName "1.0"
139 | }
140 | splits {
141 | abi {
142 | reset()
143 | enable enableSeparateBuildPerCPUArchitecture
144 | universalApk false // If true, also generate a universal APK
145 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
146 | }
147 | }
148 | signingConfigs {
149 | debug {
150 | storeFile file('debug.keystore')
151 | storePassword 'android'
152 | keyAlias 'androiddebugkey'
153 | keyPassword 'android'
154 | }
155 | }
156 | buildTypes {
157 | debug {
158 | signingConfig signingConfigs.debug
159 | }
160 | release {
161 | // Caution! In production, you need to generate your own keystore file.
162 | // see https://reactnative.dev/docs/signed-apk-android.
163 | signingConfig signingConfigs.debug
164 | minifyEnabled enableProguardInReleaseBuilds
165 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
166 | }
167 | }
168 |
169 | // applicationVariants are e.g. debug, release
170 | applicationVariants.all { variant ->
171 | variant.outputs.each { output ->
172 | // For each separate APK per architecture, set a unique version code as described here:
173 | // https://developer.android.com/studio/build/configure-apk-splits.html
174 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
175 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
176 | def abi = output.getFilter(OutputFile.ABI)
177 | if (abi != null) { // null for the universal-debug, universal-release variants
178 | output.versionCodeOverride =
179 | defaultConfig.versionCode * 1000 + versionCodes.get(abi)
180 | }
181 |
182 | }
183 | }
184 | }
185 |
186 | dependencies {
187 | implementation fileTree(dir: "libs", include: ["*.jar"])
188 | //noinspection GradleDynamicVersion
189 | implementation "com.facebook.react:react-native:+" // From node_modules
190 |
191 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
192 |
193 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
194 | exclude group:'com.facebook.fbjni'
195 | }
196 |
197 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
198 | exclude group:'com.facebook.flipper'
199 | exclude group:'com.squareup.okhttp3', module:'okhttp'
200 | }
201 |
202 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
203 | exclude group:'com.facebook.flipper'
204 | }
205 |
206 | if (enableHermes) {
207 | def hermesPath = "../../node_modules/hermes-engine/android/";
208 | debugImplementation files(hermesPath + "hermes-debug.aar")
209 | releaseImplementation files(hermesPath + "hermes-release.aar")
210 | } else {
211 | implementation jscFlavor
212 | }
213 | }
214 |
215 | // Run this once to be able to run the application with BUCK
216 | // puts all compile dependencies into folder libs for BUCK to use
217 | task copyDownloadableDepsToLibs(type: Copy) {
218 | from configurations.compile
219 | into 'libs'
220 | }
221 |
222 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
223 |
--------------------------------------------------------------------------------
/example/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.5)
4 | - DoubleConversion (1.1.6)
5 | - FBLazyVector (0.64.2)
6 | - FBReactNativeSpec (0.64.2):
7 | - RCT-Folly (= 2020.01.13.00)
8 | - RCTRequired (= 0.64.2)
9 | - RCTTypeSafety (= 0.64.2)
10 | - React-Core (= 0.64.2)
11 | - React-jsi (= 0.64.2)
12 | - ReactCommon/turbomodule/core (= 0.64.2)
13 | - Flipper (0.75.1):
14 | - Flipper-Folly (~> 2.5)
15 | - Flipper-RSocket (~> 1.3)
16 | - Flipper-DoubleConversion (1.1.7)
17 | - Flipper-Folly (2.5.3):
18 | - boost-for-react-native
19 | - Flipper-DoubleConversion
20 | - Flipper-Glog
21 | - libevent (~> 2.1.12)
22 | - OpenSSL-Universal (= 1.1.180)
23 | - Flipper-Glog (0.3.6)
24 | - Flipper-PeerTalk (0.0.4)
25 | - Flipper-RSocket (1.3.1):
26 | - Flipper-Folly (~> 2.5)
27 | - FlipperKit (0.75.1):
28 | - FlipperKit/Core (= 0.75.1)
29 | - FlipperKit/Core (0.75.1):
30 | - Flipper (~> 0.75.1)
31 | - FlipperKit/CppBridge
32 | - FlipperKit/FBCxxFollyDynamicConvert
33 | - FlipperKit/FBDefines
34 | - FlipperKit/FKPortForwarding
35 | - FlipperKit/CppBridge (0.75.1):
36 | - Flipper (~> 0.75.1)
37 | - FlipperKit/FBCxxFollyDynamicConvert (0.75.1):
38 | - Flipper-Folly (~> 2.5)
39 | - FlipperKit/FBDefines (0.75.1)
40 | - FlipperKit/FKPortForwarding (0.75.1):
41 | - CocoaAsyncSocket (~> 7.6)
42 | - Flipper-PeerTalk (~> 0.0.4)
43 | - FlipperKit/FlipperKitHighlightOverlay (0.75.1)
44 | - FlipperKit/FlipperKitLayoutPlugin (0.75.1):
45 | - FlipperKit/Core
46 | - FlipperKit/FlipperKitHighlightOverlay
47 | - FlipperKit/FlipperKitLayoutTextSearchable
48 | - YogaKit (~> 1.18)
49 | - FlipperKit/FlipperKitLayoutTextSearchable (0.75.1)
50 | - FlipperKit/FlipperKitNetworkPlugin (0.75.1):
51 | - FlipperKit/Core
52 | - FlipperKit/FlipperKitReactPlugin (0.75.1):
53 | - FlipperKit/Core
54 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.75.1):
55 | - FlipperKit/Core
56 | - FlipperKit/SKIOSNetworkPlugin (0.75.1):
57 | - FlipperKit/Core
58 | - FlipperKit/FlipperKitNetworkPlugin
59 | - glog (0.3.5)
60 | - libevent (2.1.12)
61 | - OpenSSL-Universal (1.1.180)
62 | - RCT-Folly (2020.01.13.00):
63 | - boost-for-react-native
64 | - DoubleConversion
65 | - glog
66 | - RCT-Folly/Default (= 2020.01.13.00)
67 | - RCT-Folly/Default (2020.01.13.00):
68 | - boost-for-react-native
69 | - DoubleConversion
70 | - glog
71 | - RCTRequired (0.64.2)
72 | - RCTTypeSafety (0.64.2):
73 | - FBLazyVector (= 0.64.2)
74 | - RCT-Folly (= 2020.01.13.00)
75 | - RCTRequired (= 0.64.2)
76 | - React-Core (= 0.64.2)
77 | - React (0.64.2):
78 | - React-Core (= 0.64.2)
79 | - React-Core/DevSupport (= 0.64.2)
80 | - React-Core/RCTWebSocket (= 0.64.2)
81 | - React-RCTActionSheet (= 0.64.2)
82 | - React-RCTAnimation (= 0.64.2)
83 | - React-RCTBlob (= 0.64.2)
84 | - React-RCTImage (= 0.64.2)
85 | - React-RCTLinking (= 0.64.2)
86 | - React-RCTNetwork (= 0.64.2)
87 | - React-RCTSettings (= 0.64.2)
88 | - React-RCTText (= 0.64.2)
89 | - React-RCTVibration (= 0.64.2)
90 | - React-callinvoker (0.64.2)
91 | - React-Core (0.64.2):
92 | - glog
93 | - RCT-Folly (= 2020.01.13.00)
94 | - React-Core/Default (= 0.64.2)
95 | - React-cxxreact (= 0.64.2)
96 | - React-jsi (= 0.64.2)
97 | - React-jsiexecutor (= 0.64.2)
98 | - React-perflogger (= 0.64.2)
99 | - Yoga
100 | - React-Core/CoreModulesHeaders (0.64.2):
101 | - glog
102 | - RCT-Folly (= 2020.01.13.00)
103 | - React-Core/Default
104 | - React-cxxreact (= 0.64.2)
105 | - React-jsi (= 0.64.2)
106 | - React-jsiexecutor (= 0.64.2)
107 | - React-perflogger (= 0.64.2)
108 | - Yoga
109 | - React-Core/Default (0.64.2):
110 | - glog
111 | - RCT-Folly (= 2020.01.13.00)
112 | - React-cxxreact (= 0.64.2)
113 | - React-jsi (= 0.64.2)
114 | - React-jsiexecutor (= 0.64.2)
115 | - React-perflogger (= 0.64.2)
116 | - Yoga
117 | - React-Core/DevSupport (0.64.2):
118 | - glog
119 | - RCT-Folly (= 2020.01.13.00)
120 | - React-Core/Default (= 0.64.2)
121 | - React-Core/RCTWebSocket (= 0.64.2)
122 | - React-cxxreact (= 0.64.2)
123 | - React-jsi (= 0.64.2)
124 | - React-jsiexecutor (= 0.64.2)
125 | - React-jsinspector (= 0.64.2)
126 | - React-perflogger (= 0.64.2)
127 | - Yoga
128 | - React-Core/RCTActionSheetHeaders (0.64.2):
129 | - glog
130 | - RCT-Folly (= 2020.01.13.00)
131 | - React-Core/Default
132 | - React-cxxreact (= 0.64.2)
133 | - React-jsi (= 0.64.2)
134 | - React-jsiexecutor (= 0.64.2)
135 | - React-perflogger (= 0.64.2)
136 | - Yoga
137 | - React-Core/RCTAnimationHeaders (0.64.2):
138 | - glog
139 | - RCT-Folly (= 2020.01.13.00)
140 | - React-Core/Default
141 | - React-cxxreact (= 0.64.2)
142 | - React-jsi (= 0.64.2)
143 | - React-jsiexecutor (= 0.64.2)
144 | - React-perflogger (= 0.64.2)
145 | - Yoga
146 | - React-Core/RCTBlobHeaders (0.64.2):
147 | - glog
148 | - RCT-Folly (= 2020.01.13.00)
149 | - React-Core/Default
150 | - React-cxxreact (= 0.64.2)
151 | - React-jsi (= 0.64.2)
152 | - React-jsiexecutor (= 0.64.2)
153 | - React-perflogger (= 0.64.2)
154 | - Yoga
155 | - React-Core/RCTImageHeaders (0.64.2):
156 | - glog
157 | - RCT-Folly (= 2020.01.13.00)
158 | - React-Core/Default
159 | - React-cxxreact (= 0.64.2)
160 | - React-jsi (= 0.64.2)
161 | - React-jsiexecutor (= 0.64.2)
162 | - React-perflogger (= 0.64.2)
163 | - Yoga
164 | - React-Core/RCTLinkingHeaders (0.64.2):
165 | - glog
166 | - RCT-Folly (= 2020.01.13.00)
167 | - React-Core/Default
168 | - React-cxxreact (= 0.64.2)
169 | - React-jsi (= 0.64.2)
170 | - React-jsiexecutor (= 0.64.2)
171 | - React-perflogger (= 0.64.2)
172 | - Yoga
173 | - React-Core/RCTNetworkHeaders (0.64.2):
174 | - glog
175 | - RCT-Folly (= 2020.01.13.00)
176 | - React-Core/Default
177 | - React-cxxreact (= 0.64.2)
178 | - React-jsi (= 0.64.2)
179 | - React-jsiexecutor (= 0.64.2)
180 | - React-perflogger (= 0.64.2)
181 | - Yoga
182 | - React-Core/RCTSettingsHeaders (0.64.2):
183 | - glog
184 | - RCT-Folly (= 2020.01.13.00)
185 | - React-Core/Default
186 | - React-cxxreact (= 0.64.2)
187 | - React-jsi (= 0.64.2)
188 | - React-jsiexecutor (= 0.64.2)
189 | - React-perflogger (= 0.64.2)
190 | - Yoga
191 | - React-Core/RCTTextHeaders (0.64.2):
192 | - glog
193 | - RCT-Folly (= 2020.01.13.00)
194 | - React-Core/Default
195 | - React-cxxreact (= 0.64.2)
196 | - React-jsi (= 0.64.2)
197 | - React-jsiexecutor (= 0.64.2)
198 | - React-perflogger (= 0.64.2)
199 | - Yoga
200 | - React-Core/RCTVibrationHeaders (0.64.2):
201 | - glog
202 | - RCT-Folly (= 2020.01.13.00)
203 | - React-Core/Default
204 | - React-cxxreact (= 0.64.2)
205 | - React-jsi (= 0.64.2)
206 | - React-jsiexecutor (= 0.64.2)
207 | - React-perflogger (= 0.64.2)
208 | - Yoga
209 | - React-Core/RCTWebSocket (0.64.2):
210 | - glog
211 | - RCT-Folly (= 2020.01.13.00)
212 | - React-Core/Default (= 0.64.2)
213 | - React-cxxreact (= 0.64.2)
214 | - React-jsi (= 0.64.2)
215 | - React-jsiexecutor (= 0.64.2)
216 | - React-perflogger (= 0.64.2)
217 | - Yoga
218 | - React-CoreModules (0.64.2):
219 | - FBReactNativeSpec (= 0.64.2)
220 | - RCT-Folly (= 2020.01.13.00)
221 | - RCTTypeSafety (= 0.64.2)
222 | - React-Core/CoreModulesHeaders (= 0.64.2)
223 | - React-jsi (= 0.64.2)
224 | - React-RCTImage (= 0.64.2)
225 | - ReactCommon/turbomodule/core (= 0.64.2)
226 | - React-cxxreact (0.64.2):
227 | - boost-for-react-native (= 1.63.0)
228 | - DoubleConversion
229 | - glog
230 | - RCT-Folly (= 2020.01.13.00)
231 | - React-callinvoker (= 0.64.2)
232 | - React-jsi (= 0.64.2)
233 | - React-jsinspector (= 0.64.2)
234 | - React-perflogger (= 0.64.2)
235 | - React-runtimeexecutor (= 0.64.2)
236 | - React-jsi (0.64.2):
237 | - boost-for-react-native (= 1.63.0)
238 | - DoubleConversion
239 | - glog
240 | - RCT-Folly (= 2020.01.13.00)
241 | - React-jsi/Default (= 0.64.2)
242 | - React-jsi/Default (0.64.2):
243 | - boost-for-react-native (= 1.63.0)
244 | - DoubleConversion
245 | - glog
246 | - RCT-Folly (= 2020.01.13.00)
247 | - React-jsiexecutor (0.64.2):
248 | - DoubleConversion
249 | - glog
250 | - RCT-Folly (= 2020.01.13.00)
251 | - React-cxxreact (= 0.64.2)
252 | - React-jsi (= 0.64.2)
253 | - React-perflogger (= 0.64.2)
254 | - React-jsinspector (0.64.2)
255 | - React-perflogger (0.64.2)
256 | - React-RCTActionSheet (0.64.2):
257 | - React-Core/RCTActionSheetHeaders (= 0.64.2)
258 | - React-RCTAnimation (0.64.2):
259 | - FBReactNativeSpec (= 0.64.2)
260 | - RCT-Folly (= 2020.01.13.00)
261 | - RCTTypeSafety (= 0.64.2)
262 | - React-Core/RCTAnimationHeaders (= 0.64.2)
263 | - React-jsi (= 0.64.2)
264 | - ReactCommon/turbomodule/core (= 0.64.2)
265 | - React-RCTBlob (0.64.2):
266 | - FBReactNativeSpec (= 0.64.2)
267 | - RCT-Folly (= 2020.01.13.00)
268 | - React-Core/RCTBlobHeaders (= 0.64.2)
269 | - React-Core/RCTWebSocket (= 0.64.2)
270 | - React-jsi (= 0.64.2)
271 | - React-RCTNetwork (= 0.64.2)
272 | - ReactCommon/turbomodule/core (= 0.64.2)
273 | - React-RCTImage (0.64.2):
274 | - FBReactNativeSpec (= 0.64.2)
275 | - RCT-Folly (= 2020.01.13.00)
276 | - RCTTypeSafety (= 0.64.2)
277 | - React-Core/RCTImageHeaders (= 0.64.2)
278 | - React-jsi (= 0.64.2)
279 | - React-RCTNetwork (= 0.64.2)
280 | - ReactCommon/turbomodule/core (= 0.64.2)
281 | - React-RCTLinking (0.64.2):
282 | - FBReactNativeSpec (= 0.64.2)
283 | - React-Core/RCTLinkingHeaders (= 0.64.2)
284 | - React-jsi (= 0.64.2)
285 | - ReactCommon/turbomodule/core (= 0.64.2)
286 | - React-RCTNetwork (0.64.2):
287 | - FBReactNativeSpec (= 0.64.2)
288 | - RCT-Folly (= 2020.01.13.00)
289 | - RCTTypeSafety (= 0.64.2)
290 | - React-Core/RCTNetworkHeaders (= 0.64.2)
291 | - React-jsi (= 0.64.2)
292 | - ReactCommon/turbomodule/core (= 0.64.2)
293 | - React-RCTSettings (0.64.2):
294 | - FBReactNativeSpec (= 0.64.2)
295 | - RCT-Folly (= 2020.01.13.00)
296 | - RCTTypeSafety (= 0.64.2)
297 | - React-Core/RCTSettingsHeaders (= 0.64.2)
298 | - React-jsi (= 0.64.2)
299 | - ReactCommon/turbomodule/core (= 0.64.2)
300 | - React-RCTText (0.64.2):
301 | - React-Core/RCTTextHeaders (= 0.64.2)
302 | - React-RCTVibration (0.64.2):
303 | - FBReactNativeSpec (= 0.64.2)
304 | - RCT-Folly (= 2020.01.13.00)
305 | - React-Core/RCTVibrationHeaders (= 0.64.2)
306 | - React-jsi (= 0.64.2)
307 | - ReactCommon/turbomodule/core (= 0.64.2)
308 | - React-runtimeexecutor (0.64.2):
309 | - React-jsi (= 0.64.2)
310 | - ReactCommon/turbomodule/core (0.64.2):
311 | - DoubleConversion
312 | - glog
313 | - RCT-Folly (= 2020.01.13.00)
314 | - React-callinvoker (= 0.64.2)
315 | - React-Core (= 0.64.2)
316 | - React-cxxreact (= 0.64.2)
317 | - React-jsi (= 0.64.2)
318 | - React-perflogger (= 0.64.2)
319 | - Yoga (1.14.0)
320 | - YogaKit (1.18.1):
321 | - Yoga (~> 1.14)
322 |
323 | DEPENDENCIES:
324 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
325 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
326 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
327 | - Flipper (~> 0.75.1)
328 | - Flipper-DoubleConversion (= 1.1.7)
329 | - Flipper-Folly (~> 2.5.3)
330 | - Flipper-Glog (= 0.3.6)
331 | - Flipper-PeerTalk (~> 0.0.4)
332 | - Flipper-RSocket (~> 1.3)
333 | - FlipperKit (~> 0.75.1)
334 | - FlipperKit/Core (~> 0.75.1)
335 | - FlipperKit/CppBridge (~> 0.75.1)
336 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1)
337 | - FlipperKit/FBDefines (~> 0.75.1)
338 | - FlipperKit/FKPortForwarding (~> 0.75.1)
339 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1)
340 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1)
341 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1)
342 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1)
343 | - FlipperKit/FlipperKitReactPlugin (~> 0.75.1)
344 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1)
345 | - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1)
346 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
347 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
348 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
349 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
350 | - React (from `../node_modules/react-native/`)
351 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
352 | - React-Core (from `../node_modules/react-native/`)
353 | - React-Core/DevSupport (from `../node_modules/react-native/`)
354 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
355 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
356 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
357 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
358 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
359 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
360 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
361 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
362 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
363 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
364 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
365 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
366 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
367 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
368 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
369 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
370 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
371 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
372 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
373 |
374 | SPEC REPOS:
375 | trunk:
376 | - boost-for-react-native
377 | - CocoaAsyncSocket
378 | - Flipper
379 | - Flipper-DoubleConversion
380 | - Flipper-Folly
381 | - Flipper-Glog
382 | - Flipper-PeerTalk
383 | - Flipper-RSocket
384 | - FlipperKit
385 | - libevent
386 | - OpenSSL-Universal
387 | - YogaKit
388 |
389 | EXTERNAL SOURCES:
390 | DoubleConversion:
391 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
392 | FBLazyVector:
393 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
394 | FBReactNativeSpec:
395 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
396 | glog:
397 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
398 | RCT-Folly:
399 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
400 | RCTRequired:
401 | :path: "../node_modules/react-native/Libraries/RCTRequired"
402 | RCTTypeSafety:
403 | :path: "../node_modules/react-native/Libraries/TypeSafety"
404 | React:
405 | :path: "../node_modules/react-native/"
406 | React-callinvoker:
407 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
408 | React-Core:
409 | :path: "../node_modules/react-native/"
410 | React-CoreModules:
411 | :path: "../node_modules/react-native/React/CoreModules"
412 | React-cxxreact:
413 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
414 | React-jsi:
415 | :path: "../node_modules/react-native/ReactCommon/jsi"
416 | React-jsiexecutor:
417 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
418 | React-jsinspector:
419 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
420 | React-perflogger:
421 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
422 | React-RCTActionSheet:
423 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
424 | React-RCTAnimation:
425 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
426 | React-RCTBlob:
427 | :path: "../node_modules/react-native/Libraries/Blob"
428 | React-RCTImage:
429 | :path: "../node_modules/react-native/Libraries/Image"
430 | React-RCTLinking:
431 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
432 | React-RCTNetwork:
433 | :path: "../node_modules/react-native/Libraries/Network"
434 | React-RCTSettings:
435 | :path: "../node_modules/react-native/Libraries/Settings"
436 | React-RCTText:
437 | :path: "../node_modules/react-native/Libraries/Text"
438 | React-RCTVibration:
439 | :path: "../node_modules/react-native/Libraries/Vibration"
440 | React-runtimeexecutor:
441 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
442 | ReactCommon:
443 | :path: "../node_modules/react-native/ReactCommon"
444 | Yoga:
445 | :path: "../node_modules/react-native/ReactCommon/yoga"
446 |
447 | SPEC CHECKSUMS:
448 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
449 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
450 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
451 | FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b
452 | FBReactNativeSpec: 379bcba1eee762256218abd547765ca8a416df14
453 | Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021
454 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
455 | Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c
456 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
457 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
458 | Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154
459 | FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00
460 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
461 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
462 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
463 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
464 | RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728
465 | RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa
466 | React: bda6b6d7ae912de97d7a61aa5c160db24aa2ad69
467 | React-callinvoker: 9840ea7e8e88ed73d438edb725574820b29b5baa
468 | React-Core: b5e385da7ce5f16a220fc60fd0749eae2c6120f0
469 | React-CoreModules: 17071a4e2c5239b01585f4aa8070141168ab298f
470 | React-cxxreact: 9be7b6340ed9f7c53e53deca7779f07cd66525ba
471 | React-jsi: 67747b9722f6dab2ffe15b011bcf6b3f2c3f1427
472 | React-jsiexecutor: 80c46bd381fd06e418e0d4f53672dc1d1945c4c3
473 | React-jsinspector: cc614ec18a9ca96fd275100c16d74d62ee11f0ae
474 | React-perflogger: 25373e382fed75ce768a443822f07098a15ab737
475 | React-RCTActionSheet: af7796ba49ffe4ca92e7277a5d992d37203f7da5
476 | React-RCTAnimation: 6a2e76ab50c6f25b428d81b76a5a45351c4d77aa
477 | React-RCTBlob: 02a2887023e0eed99391b6445b2e23a2a6f9226d
478 | React-RCTImage: ce5bf8e7438f2286d9b646a05d6ab11f38b0323d
479 | React-RCTLinking: ccd20742de14e020cb5f99d5c7e0bf0383aefbd9
480 | React-RCTNetwork: dfb9d089ab0753e5e5f55fc4b1210858f7245647
481 | React-RCTSettings: b14aef2d83699e48b410fb7c3ba5b66cd3291ae2
482 | React-RCTText: 41a2e952dd9adc5caf6fb68ed46b275194d5da5f
483 | React-RCTVibration: 24600e3b1aaa77126989bc58b6747509a1ba14f3
484 | React-runtimeexecutor: a9904c6d0218fb9f8b19d6dd88607225927668f9
485 | ReactCommon: 149906e01aa51142707a10665185db879898e966
486 | Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac
487 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
488 |
489 | PODFILE CHECKSUM: 52d4730468a14603cf036e5a7bed6dd442161ac8
490 |
491 | COCOAPODS: 1.10.1
492 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.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 | 68F664B074DCB87CD8B4D134 /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DD077423A2E02B0002CC535E /* libPods-example-exampleTests.a */; };
15 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16 | 82BC1CFF41E8347268F9070D /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AFF7CD7469EF20B39BEDB4CC /* libPods-example.a */; };
17 | 8EC41E58F0444712A3C6F8FA /* Carnevalee Freakshow.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B6B326761399435EA467B00F /* Carnevalee Freakshow.ttf */; };
18 | /* End PBXBuildFile section */
19 |
20 | /* Begin PBXContainerItemProxy section */
21 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
22 | isa = PBXContainerItemProxy;
23 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
24 | proxyType = 1;
25 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
26 | remoteInfo = example;
27 | };
28 | /* End PBXContainerItemProxy section */
29 |
30 | /* Begin PBXFileReference section */
31 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
32 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
33 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; };
34 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
35 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; };
36 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; };
37 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; };
38 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; };
39 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; };
40 | 52B942D3047F7B8F24BC19DA /* Pods-example-exampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.debug.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.debug.xcconfig"; sourceTree = ""; };
41 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = ""; };
42 | 88043D425643A3F8F4FBDB9E /* Pods-example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.release.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.release.xcconfig"; sourceTree = ""; };
43 | 886F1031A1BC011F8AAA5A54 /* Pods-example-exampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.release.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.release.xcconfig"; sourceTree = ""; };
44 | AFF7CD7469EF20B39BEDB4CC /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
45 | DD077423A2E02B0002CC535E /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
46 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
47 | FE254E2DCCBB843CCA225C46 /* Pods-example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.debug.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.debug.xcconfig"; sourceTree = ""; };
48 | B6B326761399435EA467B00F /* Carnevalee Freakshow.ttf */ = {isa = PBXFileReference; name = "Carnevalee Freakshow.ttf"; path = "../assets/fonts/Carnevalee Freakshow.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
49 | /* End PBXFileReference section */
50 |
51 | /* Begin PBXFrameworksBuildPhase section */
52 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
53 | isa = PBXFrameworksBuildPhase;
54 | buildActionMask = 2147483647;
55 | files = (
56 | 68F664B074DCB87CD8B4D134 /* libPods-example-exampleTests.a in Frameworks */,
57 | );
58 | runOnlyForDeploymentPostprocessing = 0;
59 | };
60 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
61 | isa = PBXFrameworksBuildPhase;
62 | buildActionMask = 2147483647;
63 | files = (
64 | 82BC1CFF41E8347268F9070D /* libPods-example.a in Frameworks */,
65 | );
66 | runOnlyForDeploymentPostprocessing = 0;
67 | };
68 | /* End PBXFrameworksBuildPhase section */
69 |
70 | /* Begin PBXGroup section */
71 | 00E356EF1AD99517003FC87E /* exampleTests */ = {
72 | isa = PBXGroup;
73 | children = (
74 | 00E356F21AD99517003FC87E /* exampleTests.m */,
75 | 00E356F01AD99517003FC87E /* Supporting Files */,
76 | );
77 | path = exampleTests;
78 | sourceTree = "";
79 | };
80 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
81 | isa = PBXGroup;
82 | children = (
83 | 00E356F11AD99517003FC87E /* Info.plist */,
84 | );
85 | name = "Supporting Files";
86 | sourceTree = "";
87 | };
88 | 13B07FAE1A68108700A75B9A /* example */ = {
89 | isa = PBXGroup;
90 | children = (
91 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
92 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
93 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
94 | 13B07FB61A68108700A75B9A /* Info.plist */,
95 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
96 | 13B07FB71A68108700A75B9A /* main.m */,
97 | );
98 | name = example;
99 | sourceTree = "";
100 | };
101 | 22E6AA8E7455BF0953F1D868 /* Pods */ = {
102 | isa = PBXGroup;
103 | children = (
104 | FE254E2DCCBB843CCA225C46 /* Pods-example.debug.xcconfig */,
105 | 88043D425643A3F8F4FBDB9E /* Pods-example.release.xcconfig */,
106 | 52B942D3047F7B8F24BC19DA /* Pods-example-exampleTests.debug.xcconfig */,
107 | 886F1031A1BC011F8AAA5A54 /* Pods-example-exampleTests.release.xcconfig */,
108 | );
109 | name = Pods;
110 | path = Pods;
111 | sourceTree = "";
112 | };
113 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
114 | isa = PBXGroup;
115 | children = (
116 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
117 | AFF7CD7469EF20B39BEDB4CC /* libPods-example.a */,
118 | DD077423A2E02B0002CC535E /* libPods-example-exampleTests.a */,
119 | );
120 | name = Frameworks;
121 | sourceTree = "";
122 | };
123 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
124 | isa = PBXGroup;
125 | children = (
126 | );
127 | name = Libraries;
128 | sourceTree = "";
129 | };
130 | 83CBB9F61A601CBA00E9B192 = {
131 | isa = PBXGroup;
132 | children = (
133 | 13B07FAE1A68108700A75B9A /* example */,
134 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
135 | 00E356EF1AD99517003FC87E /* exampleTests */,
136 | 83CBBA001A601CBA00E9B192 /* Products */,
137 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
138 | 22E6AA8E7455BF0953F1D868 /* Pods */,
139 | 24E616A41CBB47F7984D58E8 /* Resources */,
140 | );
141 | indentWidth = 2;
142 | sourceTree = "";
143 | tabWidth = 2;
144 | usesTabs = 0;
145 | };
146 | 83CBBA001A601CBA00E9B192 /* Products */ = {
147 | isa = PBXGroup;
148 | children = (
149 | 13B07F961A680F5B00A75B9A /* example.app */,
150 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
151 | );
152 | name = Products;
153 | sourceTree = "";
154 | };
155 | 24E616A41CBB47F7984D58E8 /* Resources */ = {
156 | isa = "PBXGroup";
157 | children = (
158 | B6B326761399435EA467B00F /* Carnevalee Freakshow.ttf */,
159 | );
160 | name = Resources;
161 | sourceTree = "";
162 | path = "";
163 | };
164 | /* End PBXGroup section */
165 |
166 | /* Begin PBXNativeTarget section */
167 | 00E356ED1AD99517003FC87E /* exampleTests */ = {
168 | isa = PBXNativeTarget;
169 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
170 | buildPhases = (
171 | 554D04483C447E6FC470B643 /* [CP] Check Pods Manifest.lock */,
172 | 00E356EA1AD99517003FC87E /* Sources */,
173 | 00E356EB1AD99517003FC87E /* Frameworks */,
174 | 00E356EC1AD99517003FC87E /* Resources */,
175 | BD31CA4D704BA0B05869D694 /* [CP] Embed Pods Frameworks */,
176 | E78692955D258633C6FBF3AB /* [CP] Copy Pods Resources */,
177 | );
178 | buildRules = (
179 | );
180 | dependencies = (
181 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
182 | );
183 | name = exampleTests;
184 | productName = exampleTests;
185 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
186 | productType = "com.apple.product-type.bundle.unit-test";
187 | };
188 | 13B07F861A680F5B00A75B9A /* example */ = {
189 | isa = PBXNativeTarget;
190 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
191 | buildPhases = (
192 | E6020FC682AC4957358A9EE2 /* [CP] Check Pods Manifest.lock */,
193 | FD10A7F022414F080027D42C /* Start Packager */,
194 | 13B07F871A680F5B00A75B9A /* Sources */,
195 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
196 | 13B07F8E1A680F5B00A75B9A /* Resources */,
197 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
198 | 87AF413BE832DE9A85B54881 /* [CP] Embed Pods Frameworks */,
199 | 811DCC7050BAC299E186BFE6 /* [CP] Copy Pods Resources */,
200 | );
201 | buildRules = (
202 | );
203 | dependencies = (
204 | );
205 | name = example;
206 | productName = example;
207 | productReference = 13B07F961A680F5B00A75B9A /* example.app */;
208 | productType = "com.apple.product-type.application";
209 | };
210 | /* End PBXNativeTarget section */
211 |
212 | /* Begin PBXProject section */
213 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
214 | isa = PBXProject;
215 | attributes = {
216 | LastUpgradeCheck = 1210;
217 | TargetAttributes = {
218 | 00E356ED1AD99517003FC87E = {
219 | CreatedOnToolsVersion = 6.2;
220 | TestTargetID = 13B07F861A680F5B00A75B9A;
221 | };
222 | 13B07F861A680F5B00A75B9A = {
223 | LastSwiftMigration = 1120;
224 | };
225 | };
226 | };
227 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
228 | compatibilityVersion = "Xcode 12.0";
229 | developmentRegion = en;
230 | hasScannedForEncodings = 0;
231 | knownRegions = (
232 | en,
233 | Base,
234 | );
235 | mainGroup = 83CBB9F61A601CBA00E9B192;
236 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
237 | projectDirPath = "";
238 | projectRoot = "";
239 | targets = (
240 | 13B07F861A680F5B00A75B9A /* example */,
241 | 00E356ED1AD99517003FC87E /* exampleTests */,
242 | );
243 | };
244 | /* End PBXProject section */
245 |
246 | /* Begin PBXResourcesBuildPhase section */
247 | 00E356EC1AD99517003FC87E /* Resources */ = {
248 | isa = PBXResourcesBuildPhase;
249 | buildActionMask = 2147483647;
250 | files = (
251 | );
252 | runOnlyForDeploymentPostprocessing = 0;
253 | };
254 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
255 | isa = PBXResourcesBuildPhase;
256 | buildActionMask = 2147483647;
257 | files = (
258 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
259 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
260 | 8EC41E58F0444712A3C6F8FA /* Carnevalee Freakshow.ttf in Resources */,
261 | );
262 | runOnlyForDeploymentPostprocessing = 0;
263 | };
264 | /* End PBXResourcesBuildPhase section */
265 |
266 | /* Begin PBXShellScriptBuildPhase section */
267 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
268 | isa = PBXShellScriptBuildPhase;
269 | buildActionMask = 2147483647;
270 | files = (
271 | );
272 | inputPaths = (
273 | );
274 | name = "Bundle React Native code and images";
275 | outputPaths = (
276 | );
277 | runOnlyForDeploymentPostprocessing = 0;
278 | shellPath = /bin/sh;
279 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
280 | };
281 | 554D04483C447E6FC470B643 /* [CP] Check Pods Manifest.lock */ = {
282 | isa = PBXShellScriptBuildPhase;
283 | buildActionMask = 2147483647;
284 | files = (
285 | );
286 | inputFileListPaths = (
287 | );
288 | inputPaths = (
289 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
290 | "${PODS_ROOT}/Manifest.lock",
291 | );
292 | name = "[CP] Check Pods Manifest.lock";
293 | outputFileListPaths = (
294 | );
295 | outputPaths = (
296 | "$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt",
297 | );
298 | runOnlyForDeploymentPostprocessing = 0;
299 | shellPath = /bin/sh;
300 | 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";
301 | showEnvVarsInLog = 0;
302 | };
303 | 811DCC7050BAC299E186BFE6 /* [CP] Copy Pods Resources */ = {
304 | isa = PBXShellScriptBuildPhase;
305 | buildActionMask = 2147483647;
306 | files = (
307 | );
308 | inputFileListPaths = (
309 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
310 | );
311 | name = "[CP] Copy Pods Resources";
312 | outputFileListPaths = (
313 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
314 | );
315 | runOnlyForDeploymentPostprocessing = 0;
316 | shellPath = /bin/sh;
317 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
318 | showEnvVarsInLog = 0;
319 | };
320 | 87AF413BE832DE9A85B54881 /* [CP] Embed Pods Frameworks */ = {
321 | isa = PBXShellScriptBuildPhase;
322 | buildActionMask = 2147483647;
323 | files = (
324 | );
325 | inputFileListPaths = (
326 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
327 | );
328 | name = "[CP] Embed Pods Frameworks";
329 | outputFileListPaths = (
330 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
331 | );
332 | runOnlyForDeploymentPostprocessing = 0;
333 | shellPath = /bin/sh;
334 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
335 | showEnvVarsInLog = 0;
336 | };
337 | BD31CA4D704BA0B05869D694 /* [CP] Embed Pods Frameworks */ = {
338 | isa = PBXShellScriptBuildPhase;
339 | buildActionMask = 2147483647;
340 | files = (
341 | );
342 | inputFileListPaths = (
343 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
344 | );
345 | name = "[CP] Embed Pods Frameworks";
346 | outputFileListPaths = (
347 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
348 | );
349 | runOnlyForDeploymentPostprocessing = 0;
350 | shellPath = /bin/sh;
351 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n";
352 | showEnvVarsInLog = 0;
353 | };
354 | E6020FC682AC4957358A9EE2 /* [CP] Check Pods Manifest.lock */ = {
355 | isa = PBXShellScriptBuildPhase;
356 | buildActionMask = 2147483647;
357 | files = (
358 | );
359 | inputFileListPaths = (
360 | );
361 | inputPaths = (
362 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
363 | "${PODS_ROOT}/Manifest.lock",
364 | );
365 | name = "[CP] Check Pods Manifest.lock";
366 | outputFileListPaths = (
367 | );
368 | outputPaths = (
369 | "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
370 | );
371 | runOnlyForDeploymentPostprocessing = 0;
372 | shellPath = /bin/sh;
373 | 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";
374 | showEnvVarsInLog = 0;
375 | };
376 | E78692955D258633C6FBF3AB /* [CP] Copy Pods Resources */ = {
377 | isa = PBXShellScriptBuildPhase;
378 | buildActionMask = 2147483647;
379 | files = (
380 | );
381 | inputFileListPaths = (
382 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
383 | );
384 | name = "[CP] Copy Pods Resources";
385 | outputFileListPaths = (
386 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
387 | );
388 | runOnlyForDeploymentPostprocessing = 0;
389 | shellPath = /bin/sh;
390 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n";
391 | showEnvVarsInLog = 0;
392 | };
393 | FD10A7F022414F080027D42C /* Start Packager */ = {
394 | isa = PBXShellScriptBuildPhase;
395 | buildActionMask = 2147483647;
396 | files = (
397 | );
398 | inputFileListPaths = (
399 | );
400 | inputPaths = (
401 | );
402 | name = "Start Packager";
403 | outputFileListPaths = (
404 | );
405 | outputPaths = (
406 | );
407 | runOnlyForDeploymentPostprocessing = 0;
408 | shellPath = /bin/sh;
409 | 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";
410 | showEnvVarsInLog = 0;
411 | };
412 | /* End PBXShellScriptBuildPhase section */
413 |
414 | /* Begin PBXSourcesBuildPhase section */
415 | 00E356EA1AD99517003FC87E /* Sources */ = {
416 | isa = PBXSourcesBuildPhase;
417 | buildActionMask = 2147483647;
418 | files = (
419 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
420 | );
421 | runOnlyForDeploymentPostprocessing = 0;
422 | };
423 | 13B07F871A680F5B00A75B9A /* Sources */ = {
424 | isa = PBXSourcesBuildPhase;
425 | buildActionMask = 2147483647;
426 | files = (
427 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
428 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
429 | );
430 | runOnlyForDeploymentPostprocessing = 0;
431 | };
432 | /* End PBXSourcesBuildPhase section */
433 |
434 | /* Begin PBXTargetDependency section */
435 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
436 | isa = PBXTargetDependency;
437 | target = 13B07F861A680F5B00A75B9A /* example */;
438 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
439 | };
440 | /* End PBXTargetDependency section */
441 |
442 | /* Begin XCBuildConfiguration section */
443 | 00E356F61AD99517003FC87E /* Debug */ = {
444 | isa = XCBuildConfiguration;
445 | baseConfigurationReference = 52B942D3047F7B8F24BC19DA /* Pods-example-exampleTests.debug.xcconfig */;
446 | buildSettings = {
447 | BUNDLE_LOADER = "$(TEST_HOST)";
448 | GCC_PREPROCESSOR_DEFINITIONS = (
449 | "DEBUG=1",
450 | "$(inherited)",
451 | );
452 | INFOPLIST_FILE = exampleTests/Info.plist;
453 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
454 | LD_RUNPATH_SEARCH_PATHS = (
455 | "$(inherited)",
456 | "@executable_path/Frameworks",
457 | "@loader_path/Frameworks",
458 | );
459 | OTHER_LDFLAGS = (
460 | "-ObjC",
461 | "-lc++",
462 | "$(inherited)",
463 | );
464 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
465 | PRODUCT_NAME = "$(TARGET_NAME)";
466 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
467 | };
468 | name = Debug;
469 | };
470 | 00E356F71AD99517003FC87E /* Release */ = {
471 | isa = XCBuildConfiguration;
472 | baseConfigurationReference = 886F1031A1BC011F8AAA5A54 /* Pods-example-exampleTests.release.xcconfig */;
473 | buildSettings = {
474 | BUNDLE_LOADER = "$(TEST_HOST)";
475 | COPY_PHASE_STRIP = NO;
476 | INFOPLIST_FILE = exampleTests/Info.plist;
477 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
478 | LD_RUNPATH_SEARCH_PATHS = (
479 | "$(inherited)",
480 | "@executable_path/Frameworks",
481 | "@loader_path/Frameworks",
482 | );
483 | OTHER_LDFLAGS = (
484 | "-ObjC",
485 | "-lc++",
486 | "$(inherited)",
487 | );
488 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
489 | PRODUCT_NAME = "$(TARGET_NAME)";
490 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
491 | };
492 | name = Release;
493 | };
494 | 13B07F941A680F5B00A75B9A /* Debug */ = {
495 | isa = XCBuildConfiguration;
496 | baseConfigurationReference = FE254E2DCCBB843CCA225C46 /* Pods-example.debug.xcconfig */;
497 | buildSettings = {
498 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
499 | CLANG_ENABLE_MODULES = YES;
500 | CURRENT_PROJECT_VERSION = 1;
501 | ENABLE_BITCODE = NO;
502 | INFOPLIST_FILE = example/Info.plist;
503 | LD_RUNPATH_SEARCH_PATHS = (
504 | "$(inherited)",
505 | "@executable_path/Frameworks",
506 | );
507 | OTHER_LDFLAGS = (
508 | "$(inherited)",
509 | "-ObjC",
510 | "-lc++",
511 | );
512 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
513 | PRODUCT_NAME = example;
514 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
515 | SWIFT_VERSION = 5.0;
516 | VERSIONING_SYSTEM = "apple-generic";
517 | };
518 | name = Debug;
519 | };
520 | 13B07F951A680F5B00A75B9A /* Release */ = {
521 | isa = XCBuildConfiguration;
522 | baseConfigurationReference = 88043D425643A3F8F4FBDB9E /* Pods-example.release.xcconfig */;
523 | buildSettings = {
524 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
525 | CLANG_ENABLE_MODULES = YES;
526 | CURRENT_PROJECT_VERSION = 1;
527 | INFOPLIST_FILE = example/Info.plist;
528 | LD_RUNPATH_SEARCH_PATHS = (
529 | "$(inherited)",
530 | "@executable_path/Frameworks",
531 | );
532 | OTHER_LDFLAGS = (
533 | "$(inherited)",
534 | "-ObjC",
535 | "-lc++",
536 | );
537 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
538 | PRODUCT_NAME = example;
539 | SWIFT_VERSION = 5.0;
540 | VERSIONING_SYSTEM = "apple-generic";
541 | };
542 | name = Release;
543 | };
544 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
545 | isa = XCBuildConfiguration;
546 | buildSettings = {
547 | ALWAYS_SEARCH_USER_PATHS = NO;
548 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
549 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
550 | CLANG_CXX_LIBRARY = "libc++";
551 | CLANG_ENABLE_MODULES = YES;
552 | CLANG_ENABLE_OBJC_ARC = YES;
553 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
554 | CLANG_WARN_BOOL_CONVERSION = YES;
555 | CLANG_WARN_COMMA = YES;
556 | CLANG_WARN_CONSTANT_CONVERSION = YES;
557 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
558 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
559 | CLANG_WARN_EMPTY_BODY = YES;
560 | CLANG_WARN_ENUM_CONVERSION = YES;
561 | CLANG_WARN_INFINITE_RECURSION = YES;
562 | CLANG_WARN_INT_CONVERSION = YES;
563 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
564 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
565 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
566 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
567 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
568 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
569 | CLANG_WARN_STRICT_PROTOTYPES = YES;
570 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
571 | CLANG_WARN_UNREACHABLE_CODE = YES;
572 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
573 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
574 | COPY_PHASE_STRIP = NO;
575 | ENABLE_STRICT_OBJC_MSGSEND = YES;
576 | ENABLE_TESTABILITY = YES;
577 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
578 | GCC_C_LANGUAGE_STANDARD = gnu99;
579 | GCC_DYNAMIC_NO_PIC = NO;
580 | GCC_NO_COMMON_BLOCKS = YES;
581 | GCC_OPTIMIZATION_LEVEL = 0;
582 | GCC_PREPROCESSOR_DEFINITIONS = (
583 | "DEBUG=1",
584 | "$(inherited)",
585 | );
586 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
587 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
588 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
589 | GCC_WARN_UNDECLARED_SELECTOR = YES;
590 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
591 | GCC_WARN_UNUSED_FUNCTION = YES;
592 | GCC_WARN_UNUSED_VARIABLE = YES;
593 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
594 | LD_RUNPATH_SEARCH_PATHS = (
595 | /usr/lib/swift,
596 | "$(inherited)",
597 | );
598 | LIBRARY_SEARCH_PATHS = (
599 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
600 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
601 | "\"$(inherited)\"",
602 | );
603 | MTL_ENABLE_DEBUG_INFO = YES;
604 | ONLY_ACTIVE_ARCH = YES;
605 | SDKROOT = iphoneos;
606 | };
607 | name = Debug;
608 | };
609 | 83CBBA211A601CBA00E9B192 /* Release */ = {
610 | isa = XCBuildConfiguration;
611 | buildSettings = {
612 | ALWAYS_SEARCH_USER_PATHS = NO;
613 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
614 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
615 | CLANG_CXX_LIBRARY = "libc++";
616 | CLANG_ENABLE_MODULES = YES;
617 | CLANG_ENABLE_OBJC_ARC = YES;
618 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
619 | CLANG_WARN_BOOL_CONVERSION = YES;
620 | CLANG_WARN_COMMA = YES;
621 | CLANG_WARN_CONSTANT_CONVERSION = YES;
622 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
623 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
624 | CLANG_WARN_EMPTY_BODY = YES;
625 | CLANG_WARN_ENUM_CONVERSION = YES;
626 | CLANG_WARN_INFINITE_RECURSION = YES;
627 | CLANG_WARN_INT_CONVERSION = YES;
628 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
629 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
630 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
631 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
632 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
633 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
634 | CLANG_WARN_STRICT_PROTOTYPES = YES;
635 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
636 | CLANG_WARN_UNREACHABLE_CODE = YES;
637 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
638 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
639 | COPY_PHASE_STRIP = YES;
640 | ENABLE_NS_ASSERTIONS = NO;
641 | ENABLE_STRICT_OBJC_MSGSEND = YES;
642 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
643 | GCC_C_LANGUAGE_STANDARD = gnu99;
644 | GCC_NO_COMMON_BLOCKS = YES;
645 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
646 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
647 | GCC_WARN_UNDECLARED_SELECTOR = YES;
648 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
649 | GCC_WARN_UNUSED_FUNCTION = YES;
650 | GCC_WARN_UNUSED_VARIABLE = YES;
651 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
652 | LD_RUNPATH_SEARCH_PATHS = (
653 | /usr/lib/swift,
654 | "$(inherited)",
655 | );
656 | LIBRARY_SEARCH_PATHS = (
657 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
658 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
659 | "\"$(inherited)\"",
660 | );
661 | MTL_ENABLE_DEBUG_INFO = NO;
662 | SDKROOT = iphoneos;
663 | VALIDATE_PRODUCT = YES;
664 | };
665 | name = Release;
666 | };
667 | /* End XCBuildConfiguration section */
668 |
669 | /* Begin XCConfigurationList section */
670 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
671 | isa = XCConfigurationList;
672 | buildConfigurations = (
673 | 00E356F61AD99517003FC87E /* Debug */,
674 | 00E356F71AD99517003FC87E /* Release */,
675 | );
676 | defaultConfigurationIsVisible = 0;
677 | defaultConfigurationName = Release;
678 | };
679 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
680 | isa = XCConfigurationList;
681 | buildConfigurations = (
682 | 13B07F941A680F5B00A75B9A /* Debug */,
683 | 13B07F951A680F5B00A75B9A /* Release */,
684 | );
685 | defaultConfigurationIsVisible = 0;
686 | defaultConfigurationName = Release;
687 | };
688 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
689 | isa = XCConfigurationList;
690 | buildConfigurations = (
691 | 83CBBA201A601CBA00E9B192 /* Debug */,
692 | 83CBBA211A601CBA00E9B192 /* Release */,
693 | );
694 | defaultConfigurationIsVisible = 0;
695 | defaultConfigurationName = Release;
696 | };
697 | /* End XCConfigurationList section */
698 | };
699 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
700 | }
701 |
--------------------------------------------------------------------------------