packages = new PackageList(this).getPackages();
30 | // Packages that cannot be autolinked yet can be added manually here, for example:
31 | // packages.add(new MyReactNativePackage());
32 | return packages;
33 | }
34 |
35 | @Override
36 | protected String getJSMainModuleName() {
37 | return "index";
38 | }
39 |
40 | @Override
41 | protected JSIModulePackage getJSIModulePackage() {
42 | return new ReanimatedJSIModulePackage();
43 | }
44 | };
45 |
46 | @Override
47 | public ReactNativeHost getReactNativeHost() {
48 | return mReactNativeHost;
49 | }
50 |
51 | @Override
52 | public void onCreate() {
53 | super.onCreate();
54 | SoLoader.init(this, /* native exopackage */ false);
55 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
56 | }
57 |
58 | /**
59 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
60 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
61 | *
62 | * @param context
63 | * @param reactInstanceManager
64 | */
65 | private static void initializeFlipper(
66 | Context context, ReactInstanceManager reactInstanceManager) {
67 | if (BuildConfig.DEBUG) {
68 | try {
69 | /*
70 | We use reflection here to pick up the class that initializes Flipper,
71 | since Flipper library is not available in release mode
72 | */
73 | Class> aClass = Class.forName("com.navexample.ReactNativeFlipper");
74 | aClass
75 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
76 | .invoke(null, context, reactInstanceManager);
77 | } catch (ClassNotFoundException e) {
78 | e.printStackTrace();
79 | } catch (NoSuchMethodException e) {
80 | e.printStackTrace();
81 | } catch (IllegalAccessException e) {
82 | e.printStackTrace();
83 | } catch (InvocationTargetException e) {
84 | e.printStackTrace();
85 | }
86 | }
87 | }
88 | }
89 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/navexample/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.navexample;
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 |
--------------------------------------------------------------------------------
/src/navigation/types.ts:
--------------------------------------------------------------------------------
1 | import {CompositeNavigationProp, RouteProp} from '@react-navigation/native';
2 | import {StackNavigationProp} from '@react-navigation/stack';
3 | import {BottomTabNavigationProp} from '@react-navigation/bottom-tabs';
4 |
5 | type NestedNavigatorParams = {
6 | [K in keyof ParamList]?: {screen: K; params?: ParamList[K]};
7 | }[keyof ParamList];
8 |
9 | // for useNavigation hook
10 | export type AuthNavigationType =
11 | CompositeNavigationProp<
12 | StackNavigationProp,
13 | StackNavigationProp
14 | >;
15 |
16 | export type AuthNavigationProps = {
17 | navigation: StackNavigationProp;
18 | route: RouteProp;
19 | };
20 |
21 | // for useNavigation hook
22 | export type BottomTabNavigationType =
23 | StackNavigationProp;
24 |
25 | export type BottomTabNavigationProps =
26 | {
27 | navigation: BottomTabNavigationProp;
28 | route: RouteProp;
29 | };
30 |
31 | // for useNavigation hook
32 | export type DrawerNavigationType =
33 | CompositeNavigationProp<
34 | StackNavigationProp,
35 | StackNavigationProp
36 | >;
37 |
38 | export type DrawerNavigationProps = {
39 | navigation: CompositeNavigationProp<
40 | StackNavigationProp,
41 | BottomTabNavigationProp
42 | >;
43 | route: RouteProp;
44 | };
45 |
46 | // for useNavigation hook
47 | export type AppNavigationType =
48 | StackNavigationProp;
49 |
50 | // for useNavigation hook
51 | export type ModalNavigationType =
52 | CompositeNavigationProp<
53 | StackNavigationProp,
54 | StackNavigationProp
55 | >;
56 |
57 | export type ModalNavigationProps = {
58 | navigation: StackNavigationProp;
59 | route: RouteProp;
60 | };
61 |
62 | export type AppRoutes = {
63 | AuthStackNavigation: NestedNavigatorParams;
64 | DrawerNavigator: NestedNavigatorParams;
65 | Home: NestedNavigatorParams;
66 | ModalRoutes: NestedNavigatorParams;
67 | };
68 |
69 | export type BottomTabRoutes = {
70 | Dashboard: undefined;
71 | Calendar: undefined;
72 | RequestModal: undefined;
73 | Panel: undefined;
74 | Chat: undefined;
75 | };
76 |
77 | export type DrawerRoutes = {
78 | Home: NestedNavigatorParams;
79 | EditProfile: undefined;
80 | HolidayBudget: undefined;
81 | About: undefined;
82 | Settings: undefined;
83 | };
84 |
85 | export type AuthRoutes = {
86 | Slider: undefined;
87 | Login: undefined;
88 | Signup: undefined;
89 | SignupEmail: undefined;
90 | ForgotPassword: undefined;
91 | RecoveryCode: undefined;
92 | NewPassword: undefined;
93 | ConfirmedAccount: undefined;
94 | };
95 |
96 | export type ModalRoutes = {
97 | RequestVacation: undefined;
98 | DrawerNavigator: NestedNavigatorParams;
99 | };
100 |
--------------------------------------------------------------------------------
/ios/navExample.xcodeproj/xcshareddata/xcschemes/navExample.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/navExample/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 | 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.navexample"
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 |
--------------------------------------------------------------------------------
/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.1)
6 | - FBReactNativeSpec (0.64.1):
7 | - RCT-Folly (= 2020.01.13.00)
8 | - RCTRequired (= 0.64.1)
9 | - RCTTypeSafety (= 0.64.1)
10 | - React-Core (= 0.64.1)
11 | - React-jsi (= 0.64.1)
12 | - ReactCommon/turbomodule/core (= 0.64.1)
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.1)
72 | - RCTTypeSafety (0.64.1):
73 | - FBLazyVector (= 0.64.1)
74 | - RCT-Folly (= 2020.01.13.00)
75 | - RCTRequired (= 0.64.1)
76 | - React-Core (= 0.64.1)
77 | - React (0.64.1):
78 | - React-Core (= 0.64.1)
79 | - React-Core/DevSupport (= 0.64.1)
80 | - React-Core/RCTWebSocket (= 0.64.1)
81 | - React-RCTActionSheet (= 0.64.1)
82 | - React-RCTAnimation (= 0.64.1)
83 | - React-RCTBlob (= 0.64.1)
84 | - React-RCTImage (= 0.64.1)
85 | - React-RCTLinking (= 0.64.1)
86 | - React-RCTNetwork (= 0.64.1)
87 | - React-RCTSettings (= 0.64.1)
88 | - React-RCTText (= 0.64.1)
89 | - React-RCTVibration (= 0.64.1)
90 | - React-callinvoker (0.64.1)
91 | - React-Core (0.64.1):
92 | - glog
93 | - RCT-Folly (= 2020.01.13.00)
94 | - React-Core/Default (= 0.64.1)
95 | - React-cxxreact (= 0.64.1)
96 | - React-jsi (= 0.64.1)
97 | - React-jsiexecutor (= 0.64.1)
98 | - React-perflogger (= 0.64.1)
99 | - Yoga
100 | - React-Core/CoreModulesHeaders (0.64.1):
101 | - glog
102 | - RCT-Folly (= 2020.01.13.00)
103 | - React-Core/Default
104 | - React-cxxreact (= 0.64.1)
105 | - React-jsi (= 0.64.1)
106 | - React-jsiexecutor (= 0.64.1)
107 | - React-perflogger (= 0.64.1)
108 | - Yoga
109 | - React-Core/Default (0.64.1):
110 | - glog
111 | - RCT-Folly (= 2020.01.13.00)
112 | - React-cxxreact (= 0.64.1)
113 | - React-jsi (= 0.64.1)
114 | - React-jsiexecutor (= 0.64.1)
115 | - React-perflogger (= 0.64.1)
116 | - Yoga
117 | - React-Core/DevSupport (0.64.1):
118 | - glog
119 | - RCT-Folly (= 2020.01.13.00)
120 | - React-Core/Default (= 0.64.1)
121 | - React-Core/RCTWebSocket (= 0.64.1)
122 | - React-cxxreact (= 0.64.1)
123 | - React-jsi (= 0.64.1)
124 | - React-jsiexecutor (= 0.64.1)
125 | - React-jsinspector (= 0.64.1)
126 | - React-perflogger (= 0.64.1)
127 | - Yoga
128 | - React-Core/RCTActionSheetHeaders (0.64.1):
129 | - glog
130 | - RCT-Folly (= 2020.01.13.00)
131 | - React-Core/Default
132 | - React-cxxreact (= 0.64.1)
133 | - React-jsi (= 0.64.1)
134 | - React-jsiexecutor (= 0.64.1)
135 | - React-perflogger (= 0.64.1)
136 | - Yoga
137 | - React-Core/RCTAnimationHeaders (0.64.1):
138 | - glog
139 | - RCT-Folly (= 2020.01.13.00)
140 | - React-Core/Default
141 | - React-cxxreact (= 0.64.1)
142 | - React-jsi (= 0.64.1)
143 | - React-jsiexecutor (= 0.64.1)
144 | - React-perflogger (= 0.64.1)
145 | - Yoga
146 | - React-Core/RCTBlobHeaders (0.64.1):
147 | - glog
148 | - RCT-Folly (= 2020.01.13.00)
149 | - React-Core/Default
150 | - React-cxxreact (= 0.64.1)
151 | - React-jsi (= 0.64.1)
152 | - React-jsiexecutor (= 0.64.1)
153 | - React-perflogger (= 0.64.1)
154 | - Yoga
155 | - React-Core/RCTImageHeaders (0.64.1):
156 | - glog
157 | - RCT-Folly (= 2020.01.13.00)
158 | - React-Core/Default
159 | - React-cxxreact (= 0.64.1)
160 | - React-jsi (= 0.64.1)
161 | - React-jsiexecutor (= 0.64.1)
162 | - React-perflogger (= 0.64.1)
163 | - Yoga
164 | - React-Core/RCTLinkingHeaders (0.64.1):
165 | - glog
166 | - RCT-Folly (= 2020.01.13.00)
167 | - React-Core/Default
168 | - React-cxxreact (= 0.64.1)
169 | - React-jsi (= 0.64.1)
170 | - React-jsiexecutor (= 0.64.1)
171 | - React-perflogger (= 0.64.1)
172 | - Yoga
173 | - React-Core/RCTNetworkHeaders (0.64.1):
174 | - glog
175 | - RCT-Folly (= 2020.01.13.00)
176 | - React-Core/Default
177 | - React-cxxreact (= 0.64.1)
178 | - React-jsi (= 0.64.1)
179 | - React-jsiexecutor (= 0.64.1)
180 | - React-perflogger (= 0.64.1)
181 | - Yoga
182 | - React-Core/RCTSettingsHeaders (0.64.1):
183 | - glog
184 | - RCT-Folly (= 2020.01.13.00)
185 | - React-Core/Default
186 | - React-cxxreact (= 0.64.1)
187 | - React-jsi (= 0.64.1)
188 | - React-jsiexecutor (= 0.64.1)
189 | - React-perflogger (= 0.64.1)
190 | - Yoga
191 | - React-Core/RCTTextHeaders (0.64.1):
192 | - glog
193 | - RCT-Folly (= 2020.01.13.00)
194 | - React-Core/Default
195 | - React-cxxreact (= 0.64.1)
196 | - React-jsi (= 0.64.1)
197 | - React-jsiexecutor (= 0.64.1)
198 | - React-perflogger (= 0.64.1)
199 | - Yoga
200 | - React-Core/RCTVibrationHeaders (0.64.1):
201 | - glog
202 | - RCT-Folly (= 2020.01.13.00)
203 | - React-Core/Default
204 | - React-cxxreact (= 0.64.1)
205 | - React-jsi (= 0.64.1)
206 | - React-jsiexecutor (= 0.64.1)
207 | - React-perflogger (= 0.64.1)
208 | - Yoga
209 | - React-Core/RCTWebSocket (0.64.1):
210 | - glog
211 | - RCT-Folly (= 2020.01.13.00)
212 | - React-Core/Default (= 0.64.1)
213 | - React-cxxreact (= 0.64.1)
214 | - React-jsi (= 0.64.1)
215 | - React-jsiexecutor (= 0.64.1)
216 | - React-perflogger (= 0.64.1)
217 | - Yoga
218 | - React-CoreModules (0.64.1):
219 | - FBReactNativeSpec (= 0.64.1)
220 | - RCT-Folly (= 2020.01.13.00)
221 | - RCTTypeSafety (= 0.64.1)
222 | - React-Core/CoreModulesHeaders (= 0.64.1)
223 | - React-jsi (= 0.64.1)
224 | - React-RCTImage (= 0.64.1)
225 | - ReactCommon/turbomodule/core (= 0.64.1)
226 | - React-cxxreact (0.64.1):
227 | - boost-for-react-native (= 1.63.0)
228 | - DoubleConversion
229 | - glog
230 | - RCT-Folly (= 2020.01.13.00)
231 | - React-callinvoker (= 0.64.1)
232 | - React-jsi (= 0.64.1)
233 | - React-jsinspector (= 0.64.1)
234 | - React-perflogger (= 0.64.1)
235 | - React-runtimeexecutor (= 0.64.1)
236 | - React-jsi (0.64.1):
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.1)
242 | - React-jsi/Default (0.64.1):
243 | - boost-for-react-native (= 1.63.0)
244 | - DoubleConversion
245 | - glog
246 | - RCT-Folly (= 2020.01.13.00)
247 | - React-jsiexecutor (0.64.1):
248 | - DoubleConversion
249 | - glog
250 | - RCT-Folly (= 2020.01.13.00)
251 | - React-cxxreact (= 0.64.1)
252 | - React-jsi (= 0.64.1)
253 | - React-perflogger (= 0.64.1)
254 | - React-jsinspector (0.64.1)
255 | - react-native-safe-area-context (3.2.0):
256 | - React-Core
257 | - React-perflogger (0.64.1)
258 | - React-RCTActionSheet (0.64.1):
259 | - React-Core/RCTActionSheetHeaders (= 0.64.1)
260 | - React-RCTAnimation (0.64.1):
261 | - FBReactNativeSpec (= 0.64.1)
262 | - RCT-Folly (= 2020.01.13.00)
263 | - RCTTypeSafety (= 0.64.1)
264 | - React-Core/RCTAnimationHeaders (= 0.64.1)
265 | - React-jsi (= 0.64.1)
266 | - ReactCommon/turbomodule/core (= 0.64.1)
267 | - React-RCTBlob (0.64.1):
268 | - FBReactNativeSpec (= 0.64.1)
269 | - RCT-Folly (= 2020.01.13.00)
270 | - React-Core/RCTBlobHeaders (= 0.64.1)
271 | - React-Core/RCTWebSocket (= 0.64.1)
272 | - React-jsi (= 0.64.1)
273 | - React-RCTNetwork (= 0.64.1)
274 | - ReactCommon/turbomodule/core (= 0.64.1)
275 | - React-RCTImage (0.64.1):
276 | - FBReactNativeSpec (= 0.64.1)
277 | - RCT-Folly (= 2020.01.13.00)
278 | - RCTTypeSafety (= 0.64.1)
279 | - React-Core/RCTImageHeaders (= 0.64.1)
280 | - React-jsi (= 0.64.1)
281 | - React-RCTNetwork (= 0.64.1)
282 | - ReactCommon/turbomodule/core (= 0.64.1)
283 | - React-RCTLinking (0.64.1):
284 | - FBReactNativeSpec (= 0.64.1)
285 | - React-Core/RCTLinkingHeaders (= 0.64.1)
286 | - React-jsi (= 0.64.1)
287 | - ReactCommon/turbomodule/core (= 0.64.1)
288 | - React-RCTNetwork (0.64.1):
289 | - FBReactNativeSpec (= 0.64.1)
290 | - RCT-Folly (= 2020.01.13.00)
291 | - RCTTypeSafety (= 0.64.1)
292 | - React-Core/RCTNetworkHeaders (= 0.64.1)
293 | - React-jsi (= 0.64.1)
294 | - ReactCommon/turbomodule/core (= 0.64.1)
295 | - React-RCTSettings (0.64.1):
296 | - FBReactNativeSpec (= 0.64.1)
297 | - RCT-Folly (= 2020.01.13.00)
298 | - RCTTypeSafety (= 0.64.1)
299 | - React-Core/RCTSettingsHeaders (= 0.64.1)
300 | - React-jsi (= 0.64.1)
301 | - ReactCommon/turbomodule/core (= 0.64.1)
302 | - React-RCTText (0.64.1):
303 | - React-Core/RCTTextHeaders (= 0.64.1)
304 | - React-RCTVibration (0.64.1):
305 | - FBReactNativeSpec (= 0.64.1)
306 | - RCT-Folly (= 2020.01.13.00)
307 | - React-Core/RCTVibrationHeaders (= 0.64.1)
308 | - React-jsi (= 0.64.1)
309 | - ReactCommon/turbomodule/core (= 0.64.1)
310 | - React-runtimeexecutor (0.64.1):
311 | - React-jsi (= 0.64.1)
312 | - ReactCommon/turbomodule/core (0.64.1):
313 | - DoubleConversion
314 | - glog
315 | - RCT-Folly (= 2020.01.13.00)
316 | - React-callinvoker (= 0.64.1)
317 | - React-Core (= 0.64.1)
318 | - React-cxxreact (= 0.64.1)
319 | - React-jsi (= 0.64.1)
320 | - React-perflogger (= 0.64.1)
321 | - RNCMaskedView (0.1.11):
322 | - React
323 | - RNGestureHandler (1.10.3):
324 | - React-Core
325 | - RNReanimated (2.1.0):
326 | - DoubleConversion
327 | - FBLazyVector
328 | - FBReactNativeSpec
329 | - glog
330 | - RCT-Folly
331 | - RCTRequired
332 | - RCTTypeSafety
333 | - React
334 | - React-callinvoker
335 | - React-Core
336 | - React-Core/DevSupport
337 | - React-Core/RCTWebSocket
338 | - React-CoreModules
339 | - React-cxxreact
340 | - React-jsi
341 | - React-jsiexecutor
342 | - React-jsinspector
343 | - React-RCTActionSheet
344 | - React-RCTAnimation
345 | - React-RCTBlob
346 | - React-RCTImage
347 | - React-RCTLinking
348 | - React-RCTNetwork
349 | - React-RCTSettings
350 | - React-RCTText
351 | - React-RCTVibration
352 | - ReactCommon/turbomodule/core
353 | - Yoga
354 | - RNScreens (2.18.1):
355 | - React-Core
356 | - RNSVG (12.1.1):
357 | - React
358 | - Yoga (1.14.0)
359 | - YogaKit (1.18.1):
360 | - Yoga (~> 1.14)
361 |
362 | DEPENDENCIES:
363 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
364 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
365 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
366 | - Flipper (~> 0.75.1)
367 | - Flipper-DoubleConversion (= 1.1.7)
368 | - Flipper-Folly (~> 2.5.3)
369 | - Flipper-Glog (= 0.3.6)
370 | - Flipper-PeerTalk (~> 0.0.4)
371 | - Flipper-RSocket (~> 1.3)
372 | - FlipperKit (~> 0.75.1)
373 | - FlipperKit/Core (~> 0.75.1)
374 | - FlipperKit/CppBridge (~> 0.75.1)
375 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1)
376 | - FlipperKit/FBDefines (~> 0.75.1)
377 | - FlipperKit/FKPortForwarding (~> 0.75.1)
378 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1)
379 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1)
380 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1)
381 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1)
382 | - FlipperKit/FlipperKitReactPlugin (~> 0.75.1)
383 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1)
384 | - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1)
385 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
386 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
387 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
388 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
389 | - React (from `../node_modules/react-native/`)
390 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
391 | - React-Core (from `../node_modules/react-native/`)
392 | - React-Core/DevSupport (from `../node_modules/react-native/`)
393 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
394 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
395 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
396 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
397 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
398 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
399 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
400 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
401 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
402 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
403 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
404 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
405 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
406 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
407 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
408 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
409 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
410 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
411 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
412 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
413 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
414 | - RNReanimated (from `../node_modules/react-native-reanimated`)
415 | - RNScreens (from `../node_modules/react-native-screens`)
416 | - RNSVG (from `../node_modules/react-native-svg`)
417 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
418 |
419 | SPEC REPOS:
420 | trunk:
421 | - boost-for-react-native
422 | - CocoaAsyncSocket
423 | - Flipper
424 | - Flipper-DoubleConversion
425 | - Flipper-Folly
426 | - Flipper-Glog
427 | - Flipper-PeerTalk
428 | - Flipper-RSocket
429 | - FlipperKit
430 | - libevent
431 | - OpenSSL-Universal
432 | - YogaKit
433 |
434 | EXTERNAL SOURCES:
435 | DoubleConversion:
436 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
437 | FBLazyVector:
438 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
439 | FBReactNativeSpec:
440 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
441 | glog:
442 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
443 | RCT-Folly:
444 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
445 | RCTRequired:
446 | :path: "../node_modules/react-native/Libraries/RCTRequired"
447 | RCTTypeSafety:
448 | :path: "../node_modules/react-native/Libraries/TypeSafety"
449 | React:
450 | :path: "../node_modules/react-native/"
451 | React-callinvoker:
452 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
453 | React-Core:
454 | :path: "../node_modules/react-native/"
455 | React-CoreModules:
456 | :path: "../node_modules/react-native/React/CoreModules"
457 | React-cxxreact:
458 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
459 | React-jsi:
460 | :path: "../node_modules/react-native/ReactCommon/jsi"
461 | React-jsiexecutor:
462 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
463 | React-jsinspector:
464 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
465 | react-native-safe-area-context:
466 | :path: "../node_modules/react-native-safe-area-context"
467 | React-perflogger:
468 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
469 | React-RCTActionSheet:
470 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
471 | React-RCTAnimation:
472 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
473 | React-RCTBlob:
474 | :path: "../node_modules/react-native/Libraries/Blob"
475 | React-RCTImage:
476 | :path: "../node_modules/react-native/Libraries/Image"
477 | React-RCTLinking:
478 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
479 | React-RCTNetwork:
480 | :path: "../node_modules/react-native/Libraries/Network"
481 | React-RCTSettings:
482 | :path: "../node_modules/react-native/Libraries/Settings"
483 | React-RCTText:
484 | :path: "../node_modules/react-native/Libraries/Text"
485 | React-RCTVibration:
486 | :path: "../node_modules/react-native/Libraries/Vibration"
487 | React-runtimeexecutor:
488 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
489 | ReactCommon:
490 | :path: "../node_modules/react-native/ReactCommon"
491 | RNCMaskedView:
492 | :path: "../node_modules/@react-native-community/masked-view"
493 | RNGestureHandler:
494 | :path: "../node_modules/react-native-gesture-handler"
495 | RNReanimated:
496 | :path: "../node_modules/react-native-reanimated"
497 | RNScreens:
498 | :path: "../node_modules/react-native-screens"
499 | RNSVG:
500 | :path: "../node_modules/react-native-svg"
501 | Yoga:
502 | :path: "../node_modules/react-native/ReactCommon/yoga"
503 |
504 | SPEC CHECKSUMS:
505 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
506 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
507 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
508 | FBLazyVector: 7b423f9e248eae65987838148c36eec1dbfe0b53
509 | FBReactNativeSpec: d0e640de0c445ddd9e67f7ea7b4e28acefb78791
510 | Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021
511 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
512 | Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c
513 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
514 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
515 | Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154
516 | FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00
517 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
518 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
519 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
520 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
521 | RCTRequired: ec2ebc96b7bfba3ca5c32740f5a0c6a014a274d2
522 | RCTTypeSafety: 22567f31e67c3e088c7ac23ea46ab6d4779c0ea5
523 | React: a241e3dbb1e91d06332f1dbd2b3ab26e1a4c4b9d
524 | React-callinvoker: da4d1c6141696a00163960906bc8a55b985e4ce4
525 | React-Core: 46ba164c437d7dac607b470c83c8308b05799748
526 | React-CoreModules: 217bd14904491c7b9940ff8b34a3fe08013c2f14
527 | React-cxxreact: 0090588ae6660c4615d3629fdd5c768d0983add4
528 | React-jsi: 5de8204706bd872b78ea646aee5d2561ca1214b6
529 | React-jsiexecutor: 124e8f99992490d0d13e0649d950d3e1aae06fe9
530 | React-jsinspector: 500a59626037be5b3b3d89c5151bc3baa9abf1a9
531 | react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
532 | React-perflogger: aad6d4b4a267936b3667260d1f649b6f6069a675
533 | React-RCTActionSheet: fc376be462c9c8d6ad82c0905442fd77f82a9d2a
534 | React-RCTAnimation: ba0a1c3a2738be224a08092fa7f1b444ab77d309
535 | React-RCTBlob: f758d4403fc5828a326dc69e27b41e1a92f34947
536 | React-RCTImage: ce57088705f4a8d03f6594b066a59c29143ba73e
537 | React-RCTLinking: 852a3a95c65fa63f657a4b4e2d3d83a815e00a7c
538 | React-RCTNetwork: 9d7ccb8a08d522d71700b4fb677d9fa28cccd118
539 | React-RCTSettings: d8aaf4389ff06114dee8c42ef5f0f2915946011e
540 | React-RCTText: 809c12ed6b261796ba056c04fcd20d8b90bcc81d
541 | React-RCTVibration: 4b99a7f5c6c0abbc5256410cc5425fb8531986e1
542 | React-runtimeexecutor: ff951a0c241bfaefc4940a3f1f1a229e7cb32fa6
543 | ReactCommon: bedc99ed4dae329c4fcf128d0c31b9115e5365ca
544 | RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
545 | RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
546 | RNReanimated: b8c8004b43446e3c2709fe64b2b41072f87428ad
547 | RNScreens: f7ad633b2e0190b77b6a7aab7f914fad6f198d8d
548 | RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
549 | Yoga: a7de31c64fe738607e7a3803e3f591a4b1df7393
550 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
551 |
552 | PODFILE CHECKSUM: 1fbe91621d6ae9e7dd1489d305f79908906b39cf
553 |
554 | COCOAPODS: 1.10.1
555 |
--------------------------------------------------------------------------------
/ios/navExample.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* navExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* navExampleTests.m */; };
11 | 0183CFFC03B5386814CC606B /* libPods-navExample-navExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A86A18049D6A8BA39450B99D /* libPods-navExample-navExampleTests.a */; };
12 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15 | 5A2C9EA7C24700CA8A6ECF70 /* libPods-navExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 222F08B59EC75F28CA978997 /* libPods-navExample.a */; };
16 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
17 | /* End PBXBuildFile section */
18 |
19 | /* Begin PBXContainerItemProxy section */
20 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21 | isa = PBXContainerItemProxy;
22 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23 | proxyType = 1;
24 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25 | remoteInfo = navExample;
26 | };
27 | /* End PBXContainerItemProxy section */
28 |
29 | /* Begin PBXFileReference section */
30 | 00E356EE1AD99517003FC87E /* navExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = navExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
32 | 00E356F21AD99517003FC87E /* navExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = navExampleTests.m; sourceTree = ""; };
33 | 13B07F961A680F5B00A75B9A /* navExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = navExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
34 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = navExample/AppDelegate.h; sourceTree = ""; };
35 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = navExample/AppDelegate.m; sourceTree = ""; };
36 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = navExample/Images.xcassets; sourceTree = ""; };
37 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = navExample/Info.plist; sourceTree = ""; };
38 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = navExample/main.m; sourceTree = ""; };
39 | 15B831557C87F4CCEB39D134 /* Pods-navExample-navExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-navExample-navExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests.debug.xcconfig"; sourceTree = ""; };
40 | 222F08B59EC75F28CA978997 /* libPods-navExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-navExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
41 | 34CD8954553ACA1C00462895 /* Pods-navExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-navExample.release.xcconfig"; path = "Target Support Files/Pods-navExample/Pods-navExample.release.xcconfig"; sourceTree = ""; };
42 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = navExample/LaunchScreen.storyboard; sourceTree = ""; };
43 | A86A18049D6A8BA39450B99D /* libPods-navExample-navExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-navExample-navExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44 | D4B82E2E0429DA88C3511D2E /* Pods-navExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-navExample.debug.xcconfig"; path = "Target Support Files/Pods-navExample/Pods-navExample.debug.xcconfig"; sourceTree = ""; };
45 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
46 | FAA2CAF7504FC0897C1EE455 /* Pods-navExample-navExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-navExample-navExampleTests.release.xcconfig"; path = "Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests.release.xcconfig"; sourceTree = ""; };
47 | /* End PBXFileReference section */
48 |
49 | /* Begin PBXFrameworksBuildPhase section */
50 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
51 | isa = PBXFrameworksBuildPhase;
52 | buildActionMask = 2147483647;
53 | files = (
54 | 0183CFFC03B5386814CC606B /* libPods-navExample-navExampleTests.a in Frameworks */,
55 | );
56 | runOnlyForDeploymentPostprocessing = 0;
57 | };
58 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
59 | isa = PBXFrameworksBuildPhase;
60 | buildActionMask = 2147483647;
61 | files = (
62 | 5A2C9EA7C24700CA8A6ECF70 /* libPods-navExample.a in Frameworks */,
63 | );
64 | runOnlyForDeploymentPostprocessing = 0;
65 | };
66 | /* End PBXFrameworksBuildPhase section */
67 |
68 | /* Begin PBXGroup section */
69 | 00E356EF1AD99517003FC87E /* navExampleTests */ = {
70 | isa = PBXGroup;
71 | children = (
72 | 00E356F21AD99517003FC87E /* navExampleTests.m */,
73 | 00E356F01AD99517003FC87E /* Supporting Files */,
74 | );
75 | path = navExampleTests;
76 | sourceTree = "";
77 | };
78 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
79 | isa = PBXGroup;
80 | children = (
81 | 00E356F11AD99517003FC87E /* Info.plist */,
82 | );
83 | name = "Supporting Files";
84 | sourceTree = "";
85 | };
86 | 02C23860BB84C83A25D3568F /* Pods */ = {
87 | isa = PBXGroup;
88 | children = (
89 | D4B82E2E0429DA88C3511D2E /* Pods-navExample.debug.xcconfig */,
90 | 34CD8954553ACA1C00462895 /* Pods-navExample.release.xcconfig */,
91 | 15B831557C87F4CCEB39D134 /* Pods-navExample-navExampleTests.debug.xcconfig */,
92 | FAA2CAF7504FC0897C1EE455 /* Pods-navExample-navExampleTests.release.xcconfig */,
93 | );
94 | name = Pods;
95 | path = Pods;
96 | sourceTree = "";
97 | };
98 | 13B07FAE1A68108700A75B9A /* navExample */ = {
99 | isa = PBXGroup;
100 | children = (
101 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
102 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
103 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
104 | 13B07FB61A68108700A75B9A /* Info.plist */,
105 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
106 | 13B07FB71A68108700A75B9A /* main.m */,
107 | );
108 | name = navExample;
109 | sourceTree = "";
110 | };
111 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
112 | isa = PBXGroup;
113 | children = (
114 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
115 | 222F08B59EC75F28CA978997 /* libPods-navExample.a */,
116 | A86A18049D6A8BA39450B99D /* libPods-navExample-navExampleTests.a */,
117 | );
118 | name = Frameworks;
119 | sourceTree = "";
120 | };
121 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
122 | isa = PBXGroup;
123 | children = (
124 | );
125 | name = Libraries;
126 | sourceTree = "";
127 | };
128 | 83CBB9F61A601CBA00E9B192 = {
129 | isa = PBXGroup;
130 | children = (
131 | 13B07FAE1A68108700A75B9A /* navExample */,
132 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
133 | 00E356EF1AD99517003FC87E /* navExampleTests */,
134 | 83CBBA001A601CBA00E9B192 /* Products */,
135 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
136 | 02C23860BB84C83A25D3568F /* Pods */,
137 | );
138 | indentWidth = 2;
139 | sourceTree = "";
140 | tabWidth = 2;
141 | usesTabs = 0;
142 | };
143 | 83CBBA001A601CBA00E9B192 /* Products */ = {
144 | isa = PBXGroup;
145 | children = (
146 | 13B07F961A680F5B00A75B9A /* navExample.app */,
147 | 00E356EE1AD99517003FC87E /* navExampleTests.xctest */,
148 | );
149 | name = Products;
150 | sourceTree = "";
151 | };
152 | /* End PBXGroup section */
153 |
154 | /* Begin PBXNativeTarget section */
155 | 00E356ED1AD99517003FC87E /* navExampleTests */ = {
156 | isa = PBXNativeTarget;
157 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "navExampleTests" */;
158 | buildPhases = (
159 | 776FBE5236AB85947866D571 /* [CP] Check Pods Manifest.lock */,
160 | 00E356EA1AD99517003FC87E /* Sources */,
161 | 00E356EB1AD99517003FC87E /* Frameworks */,
162 | 00E356EC1AD99517003FC87E /* Resources */,
163 | A7CB6A93737F00FCE66112DB /* [CP] Embed Pods Frameworks */,
164 | C08F8B81C3D17CE9F01AEB23 /* [CP] Copy Pods Resources */,
165 | );
166 | buildRules = (
167 | );
168 | dependencies = (
169 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
170 | );
171 | name = navExampleTests;
172 | productName = navExampleTests;
173 | productReference = 00E356EE1AD99517003FC87E /* navExampleTests.xctest */;
174 | productType = "com.apple.product-type.bundle.unit-test";
175 | };
176 | 13B07F861A680F5B00A75B9A /* navExample */ = {
177 | isa = PBXNativeTarget;
178 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "navExample" */;
179 | buildPhases = (
180 | EF79FC45EC122A1A2494A582 /* [CP] Check Pods Manifest.lock */,
181 | FD10A7F022414F080027D42C /* Start Packager */,
182 | 13B07F871A680F5B00A75B9A /* Sources */,
183 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
184 | 13B07F8E1A680F5B00A75B9A /* Resources */,
185 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
186 | 5F46EE4AF3ECDA48263A4061 /* [CP] Embed Pods Frameworks */,
187 | ADD8299E943F330EB50CF136 /* [CP] Copy Pods Resources */,
188 | );
189 | buildRules = (
190 | );
191 | dependencies = (
192 | );
193 | name = navExample;
194 | productName = navExample;
195 | productReference = 13B07F961A680F5B00A75B9A /* navExample.app */;
196 | productType = "com.apple.product-type.application";
197 | };
198 | /* End PBXNativeTarget section */
199 |
200 | /* Begin PBXProject section */
201 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
202 | isa = PBXProject;
203 | attributes = {
204 | LastUpgradeCheck = 1210;
205 | TargetAttributes = {
206 | 00E356ED1AD99517003FC87E = {
207 | CreatedOnToolsVersion = 6.2;
208 | TestTargetID = 13B07F861A680F5B00A75B9A;
209 | };
210 | 13B07F861A680F5B00A75B9A = {
211 | LastSwiftMigration = 1120;
212 | };
213 | };
214 | };
215 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "navExample" */;
216 | compatibilityVersion = "Xcode 12.0";
217 | developmentRegion = en;
218 | hasScannedForEncodings = 0;
219 | knownRegions = (
220 | en,
221 | Base,
222 | );
223 | mainGroup = 83CBB9F61A601CBA00E9B192;
224 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
225 | projectDirPath = "";
226 | projectRoot = "";
227 | targets = (
228 | 13B07F861A680F5B00A75B9A /* navExample */,
229 | 00E356ED1AD99517003FC87E /* navExampleTests */,
230 | );
231 | };
232 | /* End PBXProject section */
233 |
234 | /* Begin PBXResourcesBuildPhase section */
235 | 00E356EC1AD99517003FC87E /* Resources */ = {
236 | isa = PBXResourcesBuildPhase;
237 | buildActionMask = 2147483647;
238 | files = (
239 | );
240 | runOnlyForDeploymentPostprocessing = 0;
241 | };
242 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
243 | isa = PBXResourcesBuildPhase;
244 | buildActionMask = 2147483647;
245 | files = (
246 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
247 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
248 | );
249 | runOnlyForDeploymentPostprocessing = 0;
250 | };
251 | /* End PBXResourcesBuildPhase section */
252 |
253 | /* Begin PBXShellScriptBuildPhase section */
254 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
255 | isa = PBXShellScriptBuildPhase;
256 | buildActionMask = 2147483647;
257 | files = (
258 | );
259 | inputPaths = (
260 | );
261 | name = "Bundle React Native code and images";
262 | outputPaths = (
263 | );
264 | runOnlyForDeploymentPostprocessing = 0;
265 | shellPath = /bin/sh;
266 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
267 | };
268 | 5F46EE4AF3ECDA48263A4061 /* [CP] Embed Pods Frameworks */ = {
269 | isa = PBXShellScriptBuildPhase;
270 | buildActionMask = 2147483647;
271 | files = (
272 | );
273 | inputFileListPaths = (
274 | "${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
275 | );
276 | name = "[CP] Embed Pods Frameworks";
277 | outputFileListPaths = (
278 | "${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
279 | );
280 | runOnlyForDeploymentPostprocessing = 0;
281 | shellPath = /bin/sh;
282 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-frameworks.sh\"\n";
283 | showEnvVarsInLog = 0;
284 | };
285 | 776FBE5236AB85947866D571 /* [CP] Check Pods Manifest.lock */ = {
286 | isa = PBXShellScriptBuildPhase;
287 | buildActionMask = 2147483647;
288 | files = (
289 | );
290 | inputFileListPaths = (
291 | );
292 | inputPaths = (
293 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
294 | "${PODS_ROOT}/Manifest.lock",
295 | );
296 | name = "[CP] Check Pods Manifest.lock";
297 | outputFileListPaths = (
298 | );
299 | outputPaths = (
300 | "$(DERIVED_FILE_DIR)/Pods-navExample-navExampleTests-checkManifestLockResult.txt",
301 | );
302 | runOnlyForDeploymentPostprocessing = 0;
303 | shellPath = /bin/sh;
304 | 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";
305 | showEnvVarsInLog = 0;
306 | };
307 | A7CB6A93737F00FCE66112DB /* [CP] Embed Pods Frameworks */ = {
308 | isa = PBXShellScriptBuildPhase;
309 | buildActionMask = 2147483647;
310 | files = (
311 | );
312 | inputFileListPaths = (
313 | "${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
314 | );
315 | name = "[CP] Embed Pods Frameworks";
316 | outputFileListPaths = (
317 | "${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
318 | );
319 | runOnlyForDeploymentPostprocessing = 0;
320 | shellPath = /bin/sh;
321 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-frameworks.sh\"\n";
322 | showEnvVarsInLog = 0;
323 | };
324 | ADD8299E943F330EB50CF136 /* [CP] Copy Pods Resources */ = {
325 | isa = PBXShellScriptBuildPhase;
326 | buildActionMask = 2147483647;
327 | files = (
328 | );
329 | inputFileListPaths = (
330 | "${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-resources-${CONFIGURATION}-input-files.xcfilelist",
331 | );
332 | name = "[CP] Copy Pods Resources";
333 | outputFileListPaths = (
334 | "${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-resources-${CONFIGURATION}-output-files.xcfilelist",
335 | );
336 | runOnlyForDeploymentPostprocessing = 0;
337 | shellPath = /bin/sh;
338 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-navExample/Pods-navExample-resources.sh\"\n";
339 | showEnvVarsInLog = 0;
340 | };
341 | C08F8B81C3D17CE9F01AEB23 /* [CP] Copy Pods Resources */ = {
342 | isa = PBXShellScriptBuildPhase;
343 | buildActionMask = 2147483647;
344 | files = (
345 | );
346 | inputFileListPaths = (
347 | "${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
348 | );
349 | name = "[CP] Copy Pods Resources";
350 | outputFileListPaths = (
351 | "${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
352 | );
353 | runOnlyForDeploymentPostprocessing = 0;
354 | shellPath = /bin/sh;
355 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-navExample-navExampleTests/Pods-navExample-navExampleTests-resources.sh\"\n";
356 | showEnvVarsInLog = 0;
357 | };
358 | EF79FC45EC122A1A2494A582 /* [CP] Check Pods Manifest.lock */ = {
359 | isa = PBXShellScriptBuildPhase;
360 | buildActionMask = 2147483647;
361 | files = (
362 | );
363 | inputFileListPaths = (
364 | );
365 | inputPaths = (
366 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
367 | "${PODS_ROOT}/Manifest.lock",
368 | );
369 | name = "[CP] Check Pods Manifest.lock";
370 | outputFileListPaths = (
371 | );
372 | outputPaths = (
373 | "$(DERIVED_FILE_DIR)/Pods-navExample-checkManifestLockResult.txt",
374 | );
375 | runOnlyForDeploymentPostprocessing = 0;
376 | shellPath = /bin/sh;
377 | 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";
378 | showEnvVarsInLog = 0;
379 | };
380 | FD10A7F022414F080027D42C /* Start Packager */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputFileListPaths = (
386 | );
387 | inputPaths = (
388 | );
389 | name = "Start Packager";
390 | outputFileListPaths = (
391 | );
392 | outputPaths = (
393 | );
394 | runOnlyForDeploymentPostprocessing = 0;
395 | shellPath = /bin/sh;
396 | 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";
397 | showEnvVarsInLog = 0;
398 | };
399 | /* End PBXShellScriptBuildPhase section */
400 |
401 | /* Begin PBXSourcesBuildPhase section */
402 | 00E356EA1AD99517003FC87E /* Sources */ = {
403 | isa = PBXSourcesBuildPhase;
404 | buildActionMask = 2147483647;
405 | files = (
406 | 00E356F31AD99517003FC87E /* navExampleTests.m in Sources */,
407 | );
408 | runOnlyForDeploymentPostprocessing = 0;
409 | };
410 | 13B07F871A680F5B00A75B9A /* Sources */ = {
411 | isa = PBXSourcesBuildPhase;
412 | buildActionMask = 2147483647;
413 | files = (
414 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
415 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
416 | );
417 | runOnlyForDeploymentPostprocessing = 0;
418 | };
419 | /* End PBXSourcesBuildPhase section */
420 |
421 | /* Begin PBXTargetDependency section */
422 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
423 | isa = PBXTargetDependency;
424 | target = 13B07F861A680F5B00A75B9A /* navExample */;
425 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
426 | };
427 | /* End PBXTargetDependency section */
428 |
429 | /* Begin XCBuildConfiguration section */
430 | 00E356F61AD99517003FC87E /* Debug */ = {
431 | isa = XCBuildConfiguration;
432 | baseConfigurationReference = 15B831557C87F4CCEB39D134 /* Pods-navExample-navExampleTests.debug.xcconfig */;
433 | buildSettings = {
434 | BUNDLE_LOADER = "$(TEST_HOST)";
435 | GCC_PREPROCESSOR_DEFINITIONS = (
436 | "DEBUG=1",
437 | "$(inherited)",
438 | );
439 | INFOPLIST_FILE = navExampleTests/Info.plist;
440 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
441 | LD_RUNPATH_SEARCH_PATHS = (
442 | "$(inherited)",
443 | "@executable_path/Frameworks",
444 | "@loader_path/Frameworks",
445 | );
446 | OTHER_LDFLAGS = (
447 | "-ObjC",
448 | "-lc++",
449 | "$(inherited)",
450 | );
451 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
452 | PRODUCT_NAME = "$(TARGET_NAME)";
453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/navExample.app/navExample";
454 | };
455 | name = Debug;
456 | };
457 | 00E356F71AD99517003FC87E /* Release */ = {
458 | isa = XCBuildConfiguration;
459 | baseConfigurationReference = FAA2CAF7504FC0897C1EE455 /* Pods-navExample-navExampleTests.release.xcconfig */;
460 | buildSettings = {
461 | BUNDLE_LOADER = "$(TEST_HOST)";
462 | COPY_PHASE_STRIP = NO;
463 | INFOPLIST_FILE = navExampleTests/Info.plist;
464 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
465 | LD_RUNPATH_SEARCH_PATHS = (
466 | "$(inherited)",
467 | "@executable_path/Frameworks",
468 | "@loader_path/Frameworks",
469 | );
470 | OTHER_LDFLAGS = (
471 | "-ObjC",
472 | "-lc++",
473 | "$(inherited)",
474 | );
475 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
476 | PRODUCT_NAME = "$(TARGET_NAME)";
477 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/navExample.app/navExample";
478 | };
479 | name = Release;
480 | };
481 | 13B07F941A680F5B00A75B9A /* Debug */ = {
482 | isa = XCBuildConfiguration;
483 | baseConfigurationReference = D4B82E2E0429DA88C3511D2E /* Pods-navExample.debug.xcconfig */;
484 | buildSettings = {
485 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
486 | CLANG_ENABLE_MODULES = YES;
487 | CURRENT_PROJECT_VERSION = 1;
488 | ENABLE_BITCODE = NO;
489 | INFOPLIST_FILE = navExample/Info.plist;
490 | LD_RUNPATH_SEARCH_PATHS = (
491 | "$(inherited)",
492 | "@executable_path/Frameworks",
493 | );
494 | OTHER_LDFLAGS = (
495 | "$(inherited)",
496 | "-ObjC",
497 | "-lc++",
498 | );
499 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
500 | PRODUCT_NAME = navExample;
501 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
502 | SWIFT_VERSION = 5.0;
503 | VERSIONING_SYSTEM = "apple-generic";
504 | };
505 | name = Debug;
506 | };
507 | 13B07F951A680F5B00A75B9A /* Release */ = {
508 | isa = XCBuildConfiguration;
509 | baseConfigurationReference = 34CD8954553ACA1C00462895 /* Pods-navExample.release.xcconfig */;
510 | buildSettings = {
511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
512 | CLANG_ENABLE_MODULES = YES;
513 | CURRENT_PROJECT_VERSION = 1;
514 | INFOPLIST_FILE = navExample/Info.plist;
515 | LD_RUNPATH_SEARCH_PATHS = (
516 | "$(inherited)",
517 | "@executable_path/Frameworks",
518 | );
519 | OTHER_LDFLAGS = (
520 | "$(inherited)",
521 | "-ObjC",
522 | "-lc++",
523 | );
524 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
525 | PRODUCT_NAME = navExample;
526 | SWIFT_VERSION = 5.0;
527 | VERSIONING_SYSTEM = "apple-generic";
528 | };
529 | name = Release;
530 | };
531 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
532 | isa = XCBuildConfiguration;
533 | buildSettings = {
534 | ALWAYS_SEARCH_USER_PATHS = NO;
535 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
536 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
537 | CLANG_CXX_LIBRARY = "libc++";
538 | CLANG_ENABLE_MODULES = YES;
539 | CLANG_ENABLE_OBJC_ARC = YES;
540 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
541 | CLANG_WARN_BOOL_CONVERSION = YES;
542 | CLANG_WARN_COMMA = YES;
543 | CLANG_WARN_CONSTANT_CONVERSION = YES;
544 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
545 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
546 | CLANG_WARN_EMPTY_BODY = YES;
547 | CLANG_WARN_ENUM_CONVERSION = YES;
548 | CLANG_WARN_INFINITE_RECURSION = YES;
549 | CLANG_WARN_INT_CONVERSION = YES;
550 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
551 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
552 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
553 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
554 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
555 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
556 | CLANG_WARN_STRICT_PROTOTYPES = YES;
557 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
558 | CLANG_WARN_UNREACHABLE_CODE = YES;
559 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
560 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
561 | COPY_PHASE_STRIP = NO;
562 | ENABLE_STRICT_OBJC_MSGSEND = YES;
563 | ENABLE_TESTABILITY = YES;
564 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
565 | GCC_C_LANGUAGE_STANDARD = gnu99;
566 | GCC_DYNAMIC_NO_PIC = NO;
567 | GCC_NO_COMMON_BLOCKS = YES;
568 | GCC_OPTIMIZATION_LEVEL = 0;
569 | GCC_PREPROCESSOR_DEFINITIONS = (
570 | "DEBUG=1",
571 | "$(inherited)",
572 | );
573 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
574 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
575 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
576 | GCC_WARN_UNDECLARED_SELECTOR = YES;
577 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
578 | GCC_WARN_UNUSED_FUNCTION = YES;
579 | GCC_WARN_UNUSED_VARIABLE = YES;
580 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
581 | LD_RUNPATH_SEARCH_PATHS = (
582 | /usr/lib/swift,
583 | "$(inherited)",
584 | );
585 | LIBRARY_SEARCH_PATHS = (
586 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
587 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
588 | "\"$(inherited)\"",
589 | );
590 | MTL_ENABLE_DEBUG_INFO = YES;
591 | ONLY_ACTIVE_ARCH = YES;
592 | SDKROOT = iphoneos;
593 | };
594 | name = Debug;
595 | };
596 | 83CBBA211A601CBA00E9B192 /* Release */ = {
597 | isa = XCBuildConfiguration;
598 | buildSettings = {
599 | ALWAYS_SEARCH_USER_PATHS = NO;
600 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
601 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
602 | CLANG_CXX_LIBRARY = "libc++";
603 | CLANG_ENABLE_MODULES = YES;
604 | CLANG_ENABLE_OBJC_ARC = YES;
605 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
606 | CLANG_WARN_BOOL_CONVERSION = YES;
607 | CLANG_WARN_COMMA = YES;
608 | CLANG_WARN_CONSTANT_CONVERSION = YES;
609 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
610 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
611 | CLANG_WARN_EMPTY_BODY = YES;
612 | CLANG_WARN_ENUM_CONVERSION = YES;
613 | CLANG_WARN_INFINITE_RECURSION = YES;
614 | CLANG_WARN_INT_CONVERSION = YES;
615 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
616 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
617 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
618 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
619 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
620 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
621 | CLANG_WARN_STRICT_PROTOTYPES = YES;
622 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
623 | CLANG_WARN_UNREACHABLE_CODE = YES;
624 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
625 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
626 | COPY_PHASE_STRIP = YES;
627 | ENABLE_NS_ASSERTIONS = NO;
628 | ENABLE_STRICT_OBJC_MSGSEND = YES;
629 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
630 | GCC_C_LANGUAGE_STANDARD = gnu99;
631 | GCC_NO_COMMON_BLOCKS = YES;
632 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
633 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
634 | GCC_WARN_UNDECLARED_SELECTOR = YES;
635 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
636 | GCC_WARN_UNUSED_FUNCTION = YES;
637 | GCC_WARN_UNUSED_VARIABLE = YES;
638 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
639 | LD_RUNPATH_SEARCH_PATHS = (
640 | /usr/lib/swift,
641 | "$(inherited)",
642 | );
643 | LIBRARY_SEARCH_PATHS = (
644 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
645 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
646 | "\"$(inherited)\"",
647 | );
648 | MTL_ENABLE_DEBUG_INFO = NO;
649 | SDKROOT = iphoneos;
650 | VALIDATE_PRODUCT = YES;
651 | };
652 | name = Release;
653 | };
654 | /* End XCBuildConfiguration section */
655 |
656 | /* Begin XCConfigurationList section */
657 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "navExampleTests" */ = {
658 | isa = XCConfigurationList;
659 | buildConfigurations = (
660 | 00E356F61AD99517003FC87E /* Debug */,
661 | 00E356F71AD99517003FC87E /* Release */,
662 | );
663 | defaultConfigurationIsVisible = 0;
664 | defaultConfigurationName = Release;
665 | };
666 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "navExample" */ = {
667 | isa = XCConfigurationList;
668 | buildConfigurations = (
669 | 13B07F941A680F5B00A75B9A /* Debug */,
670 | 13B07F951A680F5B00A75B9A /* Release */,
671 | );
672 | defaultConfigurationIsVisible = 0;
673 | defaultConfigurationName = Release;
674 | };
675 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "navExample" */ = {
676 | isa = XCConfigurationList;
677 | buildConfigurations = (
678 | 83CBBA201A601CBA00E9B192 /* Debug */,
679 | 83CBBA211A601CBA00E9B192 /* Release */,
680 | );
681 | defaultConfigurationIsVisible = 0;
682 | defaultConfigurationName = Release;
683 | };
684 | /* End XCConfigurationList section */
685 | };
686 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
687 | }
688 |
--------------------------------------------------------------------------------