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.puzzle.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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/puzzle/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | NSLocationWhenInUseUsageDescription
6 | Location when in use
7 | NSLocationAlwaysAndWhenInUseUsageDescription
8 | Location when in use and always
9 | NSLocationAlwaysUsageDescription
10 | Location permissions
11 | NSPhotoLibraryUsageDescription
12 | Choice photo from library
13 | NSCameraUsageDescription
14 | Use camera
15 | NSMicrophoneUsageDescription
16 | Use microphone
17 | CFBundleDevelopmentRegion
18 | en
19 | CFBundleDisplayName
20 | puzzle
21 | CFBundleExecutable
22 | $(EXECUTABLE_NAME)
23 | CFBundleIdentifier
24 | $(PRODUCT_BUNDLE_IDENTIFIER)
25 | CFBundleInfoDictionaryVersion
26 | 6.0
27 | CFBundleName
28 | $(PRODUCT_NAME)
29 | CFBundlePackageType
30 | APPL
31 | CFBundleShortVersionString
32 | 1.0
33 | CFBundleSignature
34 | ????
35 | CFBundleVersion
36 | 1
37 | LSRequiresIPhoneOS
38 |
39 | NSAppTransportSecurity
40 |
41 | NSExceptionDomains
42 |
43 | localhost
44 |
45 | NSExceptionAllowsInsecureHTTPLoads
46 |
47 |
48 |
49 |
50 | NSLocationWhenInUseUsageDescription
51 |
52 | UILaunchStoryboardName
53 | LaunchScreen
54 | UIRequiredDeviceCapabilities
55 |
56 | armv7
57 |
58 | UISupportedInterfaceOrientations
59 |
60 | UIInterfaceOrientationPortrait
61 | UIInterfaceOrientationLandscapeLeft
62 | UIInterfaceOrientationLandscapeRight
63 |
64 | UIViewControllerBasedStatusBarAppearance
65 |
66 | UIAppFonts
67 |
68 | Montserrat-Black.ttf
69 | Montserrat-BlackItalic.ttf
70 | Montserrat-Bold.ttf
71 | Montserrat-BoldItalic.ttf
72 | Montserrat-ExtraBold.ttf
73 | Montserrat-ExtraBoldItalic.ttf
74 | Montserrat-ExtraLight.ttf
75 | Montserrat-ExtraLightItalic.ttf
76 | Montserrat-Italic.ttf
77 | Montserrat-Light.ttf
78 | Montserrat-LightItalic.ttf
79 | Montserrat-Medium.ttf
80 | Montserrat-MediumItalic.ttf
81 | Montserrat-Regular.ttf
82 | Montserrat-SemiBold.ttf
83 | Montserrat-SemiBoldItalic.ttf
84 | Montserrat-Thin.ttf
85 | Montserrat-ThinItalic.ttf
86 | Oswald-VariableFont_wght.ttf
87 | Oswald-Bold.ttf
88 | Oswald-ExtraLight.ttf
89 | Oswald-Light.ttf
90 | Oswald-Medium.ttf
91 | Oswald-Regular.ttf
92 | Oswald-SemiBold.ttf
93 |
94 |
95 |
96 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/puzzle/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.puzzle;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | public class ReactNativeFlipper {
28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
29 | if (FlipperUtils.shouldEnableFlipper(context)) {
30 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
31 |
32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
33 | client.addPlugin(new ReactFlipperPlugin());
34 | client.addPlugin(new DatabasesFlipperPlugin(context));
35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
36 | client.addPlugin(CrashReporterPlugin.getInstance());
37 |
38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
39 | NetworkingModule.setCustomClientBuilder(
40 | new NetworkingModule.CustomClientBuilder() {
41 | @Override
42 | public void apply(OkHttpClient.Builder builder) {
43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
44 | }
45 | });
46 | client.addPlugin(networkFlipperPlugin);
47 | client.start();
48 |
49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
50 | // Hence we run if after all native modules have been initialized
51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
52 | if (reactContext == null) {
53 | reactInstanceManager.addReactInstanceEventListener(
54 | new ReactInstanceManager.ReactInstanceEventListener() {
55 | @Override
56 | public void onReactContextInitialized(ReactContext reactContext) {
57 | reactInstanceManager.removeReactInstanceEventListener(this);
58 | reactContext.runOnNativeModulesQueueThread(
59 | new Runnable() {
60 | @Override
61 | public void run() {
62 | client.addPlugin(new FrescoFlipperPlugin());
63 | }
64 | });
65 | }
66 | });
67 | } else {
68 | client.addPlugin(new FrescoFlipperPlugin());
69 | }
70 | }
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/ios/puzzle.xcodeproj/xcshareddata/xcschemes/puzzle.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/puzzle/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 |
--------------------------------------------------------------------------------
/assets/fonts/Oswald/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2016 The Oswald Project Authors (https://github.com/googlefonts/OswaldFont)
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | http://scripts.sil.org/OFL
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/assets/fonts/Montserrat/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | http://scripts.sil.org/OFL
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | /* Visit https://aka.ms/tsconfig.json to read more about this file */
4 |
5 | /* Basic Options */
6 | // "incremental": true, /* Enable incremental compilation */
7 | "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
8 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
9 | // "lib": [], /* Specify library files to be included in the compilation. */
10 | // "allowJs": true, /* Allow javascript files to be compiled. */
11 | // "checkJs": true, /* Report errors in .js files. */
12 | "jsx": "react", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */
13 | // "declaration": true, /* Generates corresponding '.d.ts' file. */
14 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
15 | // "sourceMap": true, /* Generates corresponding '.map' file. */
16 | // "outFile": "./", /* Concatenate and emit output to single file. */
17 | // "outDir": "./", /* Redirect output structure to the directory. */
18 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
19 | // "composite": true, /* Enable project compilation */
20 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
21 | // "removeComments": true, /* Do not emit comments to output. */
22 | // "noEmit": true, /* Do not emit outputs. */
23 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */
24 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
25 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
26 |
27 | /* Strict Type-Checking Options */
28 | "strict": true, /* Enable all strict type-checking options. */
29 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
30 | // "strictNullChecks": true, /* Enable strict null checks. */
31 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */
32 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
33 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
34 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
35 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
36 |
37 | /* Additional Checks */
38 | // "noUnusedLocals": true, /* Report errors on unused locals. */
39 | // "noUnusedParameters": true, /* Report errors on unused parameters. */
40 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
41 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
42 | // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
43 | // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */
44 |
45 | /* Module Resolution Options */
46 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
47 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
48 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
49 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
50 | // "typeRoots": [], /* List of folders to include type definitions from. */
51 | /* Type declaration files to be included in compilation. */
52 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
53 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
54 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
55 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
56 |
57 | /* Source Map Options */
58 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
59 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
60 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
61 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
62 |
63 | /* Experimental Options */
64 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
65 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
66 | "types": ["jest", "styled-components-react-native"],
67 | /* Advanced Options */
68 | "skipLibCheck": true, /* Skip type checking of declaration files. */
69 | "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/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.puzzle"
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.0)
6 | - FBReactNativeSpec (0.64.0):
7 | - RCT-Folly (= 2020.01.13.00)
8 | - RCTRequired (= 0.64.0)
9 | - RCTTypeSafety (= 0.64.0)
10 | - React-Core (= 0.64.0)
11 | - React-jsi (= 0.64.0)
12 | - ReactCommon/turbomodule/core (= 0.64.0)
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.1):
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.0):
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.0)
72 | - RCTTypeSafety (0.64.0):
73 | - FBLazyVector (= 0.64.0)
74 | - RCT-Folly (= 2020.01.13.00)
75 | - RCTRequired (= 0.64.0)
76 | - React-Core (= 0.64.0)
77 | - React (0.64.0):
78 | - React-Core (= 0.64.0)
79 | - React-Core/DevSupport (= 0.64.0)
80 | - React-Core/RCTWebSocket (= 0.64.0)
81 | - React-RCTActionSheet (= 0.64.0)
82 | - React-RCTAnimation (= 0.64.0)
83 | - React-RCTBlob (= 0.64.0)
84 | - React-RCTImage (= 0.64.0)
85 | - React-RCTLinking (= 0.64.0)
86 | - React-RCTNetwork (= 0.64.0)
87 | - React-RCTSettings (= 0.64.0)
88 | - React-RCTText (= 0.64.0)
89 | - React-RCTVibration (= 0.64.0)
90 | - React-callinvoker (0.64.0)
91 | - React-Core (0.64.0):
92 | - glog
93 | - RCT-Folly (= 2020.01.13.00)
94 | - React-Core/Default (= 0.64.0)
95 | - React-cxxreact (= 0.64.0)
96 | - React-jsi (= 0.64.0)
97 | - React-jsiexecutor (= 0.64.0)
98 | - React-perflogger (= 0.64.0)
99 | - Yoga
100 | - React-Core/CoreModulesHeaders (0.64.0):
101 | - glog
102 | - RCT-Folly (= 2020.01.13.00)
103 | - React-Core/Default
104 | - React-cxxreact (= 0.64.0)
105 | - React-jsi (= 0.64.0)
106 | - React-jsiexecutor (= 0.64.0)
107 | - React-perflogger (= 0.64.0)
108 | - Yoga
109 | - React-Core/Default (0.64.0):
110 | - glog
111 | - RCT-Folly (= 2020.01.13.00)
112 | - React-cxxreact (= 0.64.0)
113 | - React-jsi (= 0.64.0)
114 | - React-jsiexecutor (= 0.64.0)
115 | - React-perflogger (= 0.64.0)
116 | - Yoga
117 | - React-Core/DevSupport (0.64.0):
118 | - glog
119 | - RCT-Folly (= 2020.01.13.00)
120 | - React-Core/Default (= 0.64.0)
121 | - React-Core/RCTWebSocket (= 0.64.0)
122 | - React-cxxreact (= 0.64.0)
123 | - React-jsi (= 0.64.0)
124 | - React-jsiexecutor (= 0.64.0)
125 | - React-jsinspector (= 0.64.0)
126 | - React-perflogger (= 0.64.0)
127 | - Yoga
128 | - React-Core/RCTActionSheetHeaders (0.64.0):
129 | - glog
130 | - RCT-Folly (= 2020.01.13.00)
131 | - React-Core/Default
132 | - React-cxxreact (= 0.64.0)
133 | - React-jsi (= 0.64.0)
134 | - React-jsiexecutor (= 0.64.0)
135 | - React-perflogger (= 0.64.0)
136 | - Yoga
137 | - React-Core/RCTAnimationHeaders (0.64.0):
138 | - glog
139 | - RCT-Folly (= 2020.01.13.00)
140 | - React-Core/Default
141 | - React-cxxreact (= 0.64.0)
142 | - React-jsi (= 0.64.0)
143 | - React-jsiexecutor (= 0.64.0)
144 | - React-perflogger (= 0.64.0)
145 | - Yoga
146 | - React-Core/RCTBlobHeaders (0.64.0):
147 | - glog
148 | - RCT-Folly (= 2020.01.13.00)
149 | - React-Core/Default
150 | - React-cxxreact (= 0.64.0)
151 | - React-jsi (= 0.64.0)
152 | - React-jsiexecutor (= 0.64.0)
153 | - React-perflogger (= 0.64.0)
154 | - Yoga
155 | - React-Core/RCTImageHeaders (0.64.0):
156 | - glog
157 | - RCT-Folly (= 2020.01.13.00)
158 | - React-Core/Default
159 | - React-cxxreact (= 0.64.0)
160 | - React-jsi (= 0.64.0)
161 | - React-jsiexecutor (= 0.64.0)
162 | - React-perflogger (= 0.64.0)
163 | - Yoga
164 | - React-Core/RCTLinkingHeaders (0.64.0):
165 | - glog
166 | - RCT-Folly (= 2020.01.13.00)
167 | - React-Core/Default
168 | - React-cxxreact (= 0.64.0)
169 | - React-jsi (= 0.64.0)
170 | - React-jsiexecutor (= 0.64.0)
171 | - React-perflogger (= 0.64.0)
172 | - Yoga
173 | - React-Core/RCTNetworkHeaders (0.64.0):
174 | - glog
175 | - RCT-Folly (= 2020.01.13.00)
176 | - React-Core/Default
177 | - React-cxxreact (= 0.64.0)
178 | - React-jsi (= 0.64.0)
179 | - React-jsiexecutor (= 0.64.0)
180 | - React-perflogger (= 0.64.0)
181 | - Yoga
182 | - React-Core/RCTSettingsHeaders (0.64.0):
183 | - glog
184 | - RCT-Folly (= 2020.01.13.00)
185 | - React-Core/Default
186 | - React-cxxreact (= 0.64.0)
187 | - React-jsi (= 0.64.0)
188 | - React-jsiexecutor (= 0.64.0)
189 | - React-perflogger (= 0.64.0)
190 | - Yoga
191 | - React-Core/RCTTextHeaders (0.64.0):
192 | - glog
193 | - RCT-Folly (= 2020.01.13.00)
194 | - React-Core/Default
195 | - React-cxxreact (= 0.64.0)
196 | - React-jsi (= 0.64.0)
197 | - React-jsiexecutor (= 0.64.0)
198 | - React-perflogger (= 0.64.0)
199 | - Yoga
200 | - React-Core/RCTVibrationHeaders (0.64.0):
201 | - glog
202 | - RCT-Folly (= 2020.01.13.00)
203 | - React-Core/Default
204 | - React-cxxreact (= 0.64.0)
205 | - React-jsi (= 0.64.0)
206 | - React-jsiexecutor (= 0.64.0)
207 | - React-perflogger (= 0.64.0)
208 | - Yoga
209 | - React-Core/RCTWebSocket (0.64.0):
210 | - glog
211 | - RCT-Folly (= 2020.01.13.00)
212 | - React-Core/Default (= 0.64.0)
213 | - React-cxxreact (= 0.64.0)
214 | - React-jsi (= 0.64.0)
215 | - React-jsiexecutor (= 0.64.0)
216 | - React-perflogger (= 0.64.0)
217 | - Yoga
218 | - React-CoreModules (0.64.0):
219 | - FBReactNativeSpec (= 0.64.0)
220 | - RCT-Folly (= 2020.01.13.00)
221 | - RCTTypeSafety (= 0.64.0)
222 | - React-Core/CoreModulesHeaders (= 0.64.0)
223 | - React-jsi (= 0.64.0)
224 | - React-RCTImage (= 0.64.0)
225 | - ReactCommon/turbomodule/core (= 0.64.0)
226 | - React-cxxreact (0.64.0):
227 | - boost-for-react-native (= 1.63.0)
228 | - DoubleConversion
229 | - glog
230 | - RCT-Folly (= 2020.01.13.00)
231 | - React-callinvoker (= 0.64.0)
232 | - React-jsi (= 0.64.0)
233 | - React-jsinspector (= 0.64.0)
234 | - React-perflogger (= 0.64.0)
235 | - React-runtimeexecutor (= 0.64.0)
236 | - React-jsi (0.64.0):
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.0)
242 | - React-jsi/Default (0.64.0):
243 | - boost-for-react-native (= 1.63.0)
244 | - DoubleConversion
245 | - glog
246 | - RCT-Folly (= 2020.01.13.00)
247 | - React-jsiexecutor (0.64.0):
248 | - DoubleConversion
249 | - glog
250 | - RCT-Folly (= 2020.01.13.00)
251 | - React-cxxreact (= 0.64.0)
252 | - React-jsi (= 0.64.0)
253 | - React-perflogger (= 0.64.0)
254 | - React-jsinspector (0.64.0)
255 | - react-native-geolocation (2.0.2):
256 | - React
257 | - react-native-image-picker (3.3.2):
258 | - React-Core
259 | - react-native-safe-area-context (3.2.0):
260 | - React-Core
261 | - React-perflogger (0.64.0)
262 | - React-RCTActionSheet (0.64.0):
263 | - React-Core/RCTActionSheetHeaders (= 0.64.0)
264 | - React-RCTAnimation (0.64.0):
265 | - FBReactNativeSpec (= 0.64.0)
266 | - RCT-Folly (= 2020.01.13.00)
267 | - RCTTypeSafety (= 0.64.0)
268 | - React-Core/RCTAnimationHeaders (= 0.64.0)
269 | - React-jsi (= 0.64.0)
270 | - ReactCommon/turbomodule/core (= 0.64.0)
271 | - React-RCTBlob (0.64.0):
272 | - FBReactNativeSpec (= 0.64.0)
273 | - RCT-Folly (= 2020.01.13.00)
274 | - React-Core/RCTBlobHeaders (= 0.64.0)
275 | - React-Core/RCTWebSocket (= 0.64.0)
276 | - React-jsi (= 0.64.0)
277 | - React-RCTNetwork (= 0.64.0)
278 | - ReactCommon/turbomodule/core (= 0.64.0)
279 | - React-RCTImage (0.64.0):
280 | - FBReactNativeSpec (= 0.64.0)
281 | - RCT-Folly (= 2020.01.13.00)
282 | - RCTTypeSafety (= 0.64.0)
283 | - React-Core/RCTImageHeaders (= 0.64.0)
284 | - React-jsi (= 0.64.0)
285 | - React-RCTNetwork (= 0.64.0)
286 | - ReactCommon/turbomodule/core (= 0.64.0)
287 | - React-RCTLinking (0.64.0):
288 | - FBReactNativeSpec (= 0.64.0)
289 | - React-Core/RCTLinkingHeaders (= 0.64.0)
290 | - React-jsi (= 0.64.0)
291 | - ReactCommon/turbomodule/core (= 0.64.0)
292 | - React-RCTNetwork (0.64.0):
293 | - FBReactNativeSpec (= 0.64.0)
294 | - RCT-Folly (= 2020.01.13.00)
295 | - RCTTypeSafety (= 0.64.0)
296 | - React-Core/RCTNetworkHeaders (= 0.64.0)
297 | - React-jsi (= 0.64.0)
298 | - ReactCommon/turbomodule/core (= 0.64.0)
299 | - React-RCTSettings (0.64.0):
300 | - FBReactNativeSpec (= 0.64.0)
301 | - RCT-Folly (= 2020.01.13.00)
302 | - RCTTypeSafety (= 0.64.0)
303 | - React-Core/RCTSettingsHeaders (= 0.64.0)
304 | - React-jsi (= 0.64.0)
305 | - ReactCommon/turbomodule/core (= 0.64.0)
306 | - React-RCTText (0.64.0):
307 | - React-Core/RCTTextHeaders (= 0.64.0)
308 | - React-RCTVibration (0.64.0):
309 | - FBReactNativeSpec (= 0.64.0)
310 | - RCT-Folly (= 2020.01.13.00)
311 | - React-Core/RCTVibrationHeaders (= 0.64.0)
312 | - React-jsi (= 0.64.0)
313 | - ReactCommon/turbomodule/core (= 0.64.0)
314 | - React-runtimeexecutor (0.64.0):
315 | - React-jsi (= 0.64.0)
316 | - ReactCommon/turbomodule/core (0.64.0):
317 | - DoubleConversion
318 | - glog
319 | - RCT-Folly (= 2020.01.13.00)
320 | - React-callinvoker (= 0.64.0)
321 | - React-Core (= 0.64.0)
322 | - React-cxxreact (= 0.64.0)
323 | - React-jsi (= 0.64.0)
324 | - React-perflogger (= 0.64.0)
325 | - RNCMaskedView (0.1.10):
326 | - React
327 | - RNGestureHandler (1.10.3):
328 | - React-Core
329 | - RNReanimated (2.1.0):
330 | - DoubleConversion
331 | - FBLazyVector
332 | - FBReactNativeSpec
333 | - glog
334 | - RCT-Folly
335 | - RCTRequired
336 | - RCTTypeSafety
337 | - React
338 | - React-callinvoker
339 | - React-Core
340 | - React-Core/DevSupport
341 | - React-Core/RCTWebSocket
342 | - React-CoreModules
343 | - React-cxxreact
344 | - React-jsi
345 | - React-jsiexecutor
346 | - React-jsinspector
347 | - React-RCTActionSheet
348 | - React-RCTAnimation
349 | - React-RCTBlob
350 | - React-RCTImage
351 | - React-RCTLinking
352 | - React-RCTNetwork
353 | - React-RCTSettings
354 | - React-RCTText
355 | - React-RCTVibration
356 | - ReactCommon/turbomodule/core
357 | - Yoga
358 | - RNScreens (3.0.0):
359 | - React-Core
360 | - RNSVG (12.1.0):
361 | - React
362 | - Yoga (1.14.0)
363 | - YogaKit (1.18.1):
364 | - Yoga (~> 1.14)
365 |
366 | DEPENDENCIES:
367 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
368 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
369 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
370 | - Flipper (~> 0.75.1)
371 | - Flipper-DoubleConversion (= 1.1.7)
372 | - Flipper-Folly (~> 2.5)
373 | - Flipper-Glog (= 0.3.6)
374 | - Flipper-PeerTalk (~> 0.0.4)
375 | - Flipper-RSocket (~> 1.3)
376 | - FlipperKit (~> 0.75.1)
377 | - FlipperKit/Core (~> 0.75.1)
378 | - FlipperKit/CppBridge (~> 0.75.1)
379 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1)
380 | - FlipperKit/FBDefines (~> 0.75.1)
381 | - FlipperKit/FKPortForwarding (~> 0.75.1)
382 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1)
383 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1)
384 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1)
385 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1)
386 | - FlipperKit/FlipperKitReactPlugin (~> 0.75.1)
387 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1)
388 | - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1)
389 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
390 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
391 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
392 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
393 | - React (from `../node_modules/react-native/`)
394 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
395 | - React-Core (from `../node_modules/react-native/`)
396 | - React-Core/DevSupport (from `../node_modules/react-native/`)
397 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
398 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
399 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
400 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
401 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
402 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
403 | - "react-native-geolocation (from `../node_modules/@react-native-community/geolocation`)"
404 | - react-native-image-picker (from `../node_modules/react-native-image-picker`)
405 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
406 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
407 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
408 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
409 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
410 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
411 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
412 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
413 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
414 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
415 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
416 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
417 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
418 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
419 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
420 | - RNReanimated (from `../node_modules/react-native-reanimated`)
421 | - RNScreens (from `../node_modules/react-native-screens`)
422 | - RNSVG (from `../node_modules/react-native-svg`)
423 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
424 |
425 | SPEC REPOS:
426 | trunk:
427 | - boost-for-react-native
428 | - CocoaAsyncSocket
429 | - Flipper
430 | - Flipper-DoubleConversion
431 | - Flipper-Folly
432 | - Flipper-Glog
433 | - Flipper-PeerTalk
434 | - Flipper-RSocket
435 | - FlipperKit
436 | - libevent
437 | - OpenSSL-Universal
438 | - YogaKit
439 |
440 | EXTERNAL SOURCES:
441 | DoubleConversion:
442 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
443 | FBLazyVector:
444 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
445 | FBReactNativeSpec:
446 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
447 | glog:
448 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
449 | RCT-Folly:
450 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
451 | RCTRequired:
452 | :path: "../node_modules/react-native/Libraries/RCTRequired"
453 | RCTTypeSafety:
454 | :path: "../node_modules/react-native/Libraries/TypeSafety"
455 | React:
456 | :path: "../node_modules/react-native/"
457 | React-callinvoker:
458 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
459 | React-Core:
460 | :path: "../node_modules/react-native/"
461 | React-CoreModules:
462 | :path: "../node_modules/react-native/React/CoreModules"
463 | React-cxxreact:
464 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
465 | React-jsi:
466 | :path: "../node_modules/react-native/ReactCommon/jsi"
467 | React-jsiexecutor:
468 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
469 | React-jsinspector:
470 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
471 | react-native-geolocation:
472 | :path: "../node_modules/@react-native-community/geolocation"
473 | react-native-image-picker:
474 | :path: "../node_modules/react-native-image-picker"
475 | react-native-safe-area-context:
476 | :path: "../node_modules/react-native-safe-area-context"
477 | React-perflogger:
478 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
479 | React-RCTActionSheet:
480 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
481 | React-RCTAnimation:
482 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
483 | React-RCTBlob:
484 | :path: "../node_modules/react-native/Libraries/Blob"
485 | React-RCTImage:
486 | :path: "../node_modules/react-native/Libraries/Image"
487 | React-RCTLinking:
488 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
489 | React-RCTNetwork:
490 | :path: "../node_modules/react-native/Libraries/Network"
491 | React-RCTSettings:
492 | :path: "../node_modules/react-native/Libraries/Settings"
493 | React-RCTText:
494 | :path: "../node_modules/react-native/Libraries/Text"
495 | React-RCTVibration:
496 | :path: "../node_modules/react-native/Libraries/Vibration"
497 | React-runtimeexecutor:
498 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
499 | ReactCommon:
500 | :path: "../node_modules/react-native/ReactCommon"
501 | RNCMaskedView:
502 | :path: "../node_modules/@react-native-community/masked-view"
503 | RNGestureHandler:
504 | :path: "../node_modules/react-native-gesture-handler"
505 | RNReanimated:
506 | :path: "../node_modules/react-native-reanimated"
507 | RNScreens:
508 | :path: "../node_modules/react-native-screens"
509 | RNSVG:
510 | :path: "../node_modules/react-native-svg"
511 | Yoga:
512 | :path: "../node_modules/react-native/ReactCommon/yoga"
513 |
514 | SPEC CHECKSUMS:
515 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
516 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
517 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de
518 | FBLazyVector: 49cbe4b43e445b06bf29199b6ad2057649e4c8f5
519 | FBReactNativeSpec: 4f9c8259292b7e80e43d482205b46e12c599f8a9
520 | Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021
521 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
522 | Flipper-Folly: f7a3caafbd74bda4827954fd7a6e000e36355489
523 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
524 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
525 | Flipper-RSocket: 602921fee03edacf18f5d6f3d3594ba477f456e5
526 | FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00
527 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62
528 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
529 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
530 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
531 | RCTRequired: 2f8cb5b7533219bf4218a045f92768129cf7050a
532 | RCTTypeSafety: 512728b73549e72ad7330b92f3d42936f2a4de5b
533 | React: 98eac01574128a790f0bbbafe2d1a8607291ac24
534 | React-callinvoker: def3f7fae16192df68d9b69fd4bbb59092ee36bc
535 | React-Core: 70a52aa5dbe9b83befae82038451a7df9fd54c5a
536 | React-CoreModules: 052edef46117862e2570eb3a0f06d81c61d2c4b8
537 | React-cxxreact: c1dc71b30653cfb4770efdafcbdc0ad6d388baab
538 | React-jsi: 74341196d9547cbcbcfa4b3bbbf03af56431d5a1
539 | React-jsiexecutor: 06a9c77b56902ae7ffcdd7a4905f664adc5d237b
540 | React-jsinspector: 0ae35a37b20d5e031eb020a69cc5afdbd6406301
541 | react-native-geolocation: c956aeb136625c23e0dce0467664af2c437888c9
542 | react-native-image-picker: b42940647478bf106ad3c491d6f5d9d40916d865
543 | react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
544 | React-perflogger: 9c547d8f06b9bf00cb447f2b75e8d7f19b7e02af
545 | React-RCTActionSheet: 3080b6e12e0e1a5b313c8c0050699b5c794a1b11
546 | React-RCTAnimation: 3f96f21a497ae7dabf4d2f150ee43f906aaf516f
547 | React-RCTBlob: 283b8e5025e7f954176bc48164f846909002f3ed
548 | React-RCTImage: 5088a484faac78f2d877e1b79125d3bb1ea94a16
549 | React-RCTLinking: 5e8fbb3e9a8bc2e4e3eb15b1eb8bda5fcac27b8c
550 | React-RCTNetwork: 38ec277217b1e841d5e6a1fa78da65b9212ccb28
551 | React-RCTSettings: 242d6e692108c3de4f3bb74b7586a8799e9ab070
552 | React-RCTText: 8746736ac8eb5a4a74719aa695b7a236a93a83d2
553 | React-RCTVibration: 0fd6b21751a33cb72fce1a4a33ab9678416d307a
554 | React-runtimeexecutor: cad74a1eaa53ee6e7a3620231939d8fe2c6afcf0
555 | ReactCommon: cfe2b7fd20e0dbd2d1185cd7d8f99633fbc5ff05
556 | RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
557 | RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
558 | RNReanimated: b8c8004b43446e3c2709fe64b2b41072f87428ad
559 | RNScreens: e8e8dd0588b5da0ab57dcca76ab9b2d8987757e0
560 | RNSVG: ce9d996113475209013317e48b05c21ee988d42e
561 | Yoga: 8c8436d4171c87504c648ae23b1d81242bdf3bbf
562 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
563 |
564 | PODFILE CHECKSUM: fe26ee8e1fc91ca99fdd599eed461a2086ad1f32
565 |
566 | COCOAPODS: 1.10.1
567 |
--------------------------------------------------------------------------------
/ios/puzzle.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* puzzleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* puzzleTests.m */; };
11 | 0571D681CF7044D2ABC410D3 /* Oswald-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D394C9CAA88542429DEEABA5 /* Oswald-Medium.ttf */; };
12 | 0D86EDFE3C7B47B68711D2C4 /* Montserrat-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 980F1A9650344E469C533F65 /* Montserrat-ExtraBold.ttf */; };
13 | 0ED73C24420846C2B009B085 /* Oswald-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9B347A90B3044386B84C086E /* Oswald-Regular.ttf */; };
14 | 102C1B253A684FC085BF0544 /* Montserrat-ExtraBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0C5A4A4C15B849B7A6DB492C /* Montserrat-ExtraBoldItalic.ttf */; };
15 | 10F3845A120EE39174EC6015 /* libPods-puzzle.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A69E060C3D08099CBC30C3F6 /* libPods-puzzle.a */; };
16 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
17 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
18 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
19 | 13F19F411AFE473490F25825 /* Oswald-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 200E8EC385EE4354AB7713A0 /* Oswald-Light.ttf */; };
20 | 17282F7FAD62416180DAE4D2 /* Oswald-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C73C1EC3A9224540912BBC2E /* Oswald-Bold.ttf */; };
21 | 23A449749D894EACB03D6772 /* Montserrat-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C9185110261F4E97BF3F2FE8 /* Montserrat-ExtraLight.ttf */; };
22 | 2E47B4EE36054A61A826EABE /* Montserrat-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E982E262F7D349B3B5BE8A70 /* Montserrat-BoldItalic.ttf */; };
23 | 34C18A179A534A8E85C8B66E /* Montserrat-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8ACAC2E699BA4E28BC3919D2 /* Montserrat-Medium.ttf */; };
24 | 3CF6B2E68D814CE3BC968D76 /* Oswald-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CD026861EEFF46E183F5D99B /* Oswald-SemiBold.ttf */; };
25 | 5C24E7E052F541DE8DC6189F /* Oswald-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F2FEB0BA697C4F8BA497C1B9 /* Oswald-ExtraLight.ttf */; };
26 | 61E5020C753541C99A9D7A96 /* Montserrat-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3841A6053DBA458E896AF9CC /* Montserrat-Thin.ttf */; };
27 | 6ADFCDEDC42E4EC6B12FDAE4 /* Montserrat-ThinItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 00E81A868A084DF197C767F6 /* Montserrat-ThinItalic.ttf */; };
28 | 76404BF4E2364879A92FD15D /* Montserrat-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B589D86AE481476B92461C31 /* Montserrat-Bold.ttf */; };
29 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
30 | 83FE013EB3194F4D9B309D89 /* Oswald-VariableFont_wght.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 500541AE058D4390A4EF2546 /* Oswald-VariableFont_wght.ttf */; };
31 | 8A7F1EEFA1474819B07518BF /* Montserrat-SemiBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D971598838C84846B9FEDE42 /* Montserrat-SemiBoldItalic.ttf */; };
32 | 974361CD0C5E4F66AEA0D428 /* Montserrat-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2F2BB382AA1C4D28A9F08A0B /* Montserrat-Italic.ttf */; };
33 | A044FDB1F73E41018AA8F151 /* Montserrat-MediumItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0B6C592A14954E90960F4DA7 /* Montserrat-MediumItalic.ttf */; };
34 | ACCDFF2DC7414B4F9DD68828 /* Montserrat-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2A70A25AFDE24FCBAA80C3FE /* Montserrat-Regular.ttf */; };
35 | BF0D8B89FC034FF28EECF77B /* Montserrat-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DB9A760D0A734E098537553C /* Montserrat-BlackItalic.ttf */; };
36 | C1593ED30CFD42F1B046CD81 /* Montserrat-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 875B176E75CF44A88DA40498 /* Montserrat-Black.ttf */; };
37 | D271677E4EB243C9BD047E68 /* Montserrat-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A298BAD52FB44D30BE38E102 /* Montserrat-SemiBold.ttf */; };
38 | DC5F9E74634A4B2C861BE1F1 /* Montserrat-ExtraLightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1D02706D83B743CF871CCAB0 /* Montserrat-ExtraLightItalic.ttf */; };
39 | E76ACB3EB9A54D1AA479F01E /* Montserrat-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C95EC444DAF447D9A7917883 /* Montserrat-Light.ttf */; };
40 | F75F59A26720C5B4634ECC5E /* libPods-puzzle-puzzleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D034F23302DE94BC406628EB /* libPods-puzzle-puzzleTests.a */; };
41 | FF35B3D2483A477B9E961135 /* Montserrat-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FF858DB5C10A4158A93AA23E /* Montserrat-LightItalic.ttf */; };
42 | /* End PBXBuildFile section */
43 |
44 | /* Begin PBXContainerItemProxy section */
45 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
46 | isa = PBXContainerItemProxy;
47 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
48 | proxyType = 1;
49 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
50 | remoteInfo = puzzle;
51 | };
52 | /* End PBXContainerItemProxy section */
53 |
54 | /* Begin PBXFileReference section */
55 | 00E356EE1AD99517003FC87E /* puzzleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = puzzleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
57 | 00E356F21AD99517003FC87E /* puzzleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = puzzleTests.m; sourceTree = ""; };
58 | 00E81A868A084DF197C767F6 /* Montserrat-ThinItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-ThinItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-ThinItalic.ttf"; sourceTree = ""; };
59 | 0B6C592A14954E90960F4DA7 /* Montserrat-MediumItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-MediumItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-MediumItalic.ttf"; sourceTree = ""; };
60 | 0C5A4A4C15B849B7A6DB492C /* Montserrat-ExtraBoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-ExtraBoldItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf"; sourceTree = ""; };
61 | 0E784D00B2ADCAD450ABEACA /* Pods-puzzle-puzzleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-puzzle-puzzleTests.debug.xcconfig"; path = "Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests.debug.xcconfig"; sourceTree = ""; };
62 | 13B07F961A680F5B00A75B9A /* puzzle.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = puzzle.app; sourceTree = BUILT_PRODUCTS_DIR; };
63 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = puzzle/AppDelegate.h; sourceTree = ""; };
64 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = puzzle/AppDelegate.m; sourceTree = ""; };
65 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = puzzle/Images.xcassets; sourceTree = ""; };
66 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = puzzle/Info.plist; sourceTree = ""; };
67 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = puzzle/main.m; sourceTree = ""; };
68 | 1D02706D83B743CF871CCAB0 /* Montserrat-ExtraLightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-ExtraLightItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf"; sourceTree = ""; };
69 | 200E8EC385EE4354AB7713A0 /* Oswald-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-Light.ttf"; path = "../assets/fonts/Oswald/static/Oswald-Light.ttf"; sourceTree = ""; };
70 | 2A70A25AFDE24FCBAA80C3FE /* Montserrat-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Regular.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Regular.ttf"; sourceTree = ""; };
71 | 2F2BB382AA1C4D28A9F08A0B /* Montserrat-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Italic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Italic.ttf"; sourceTree = ""; };
72 | 3841A6053DBA458E896AF9CC /* Montserrat-Thin.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Thin.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Thin.ttf"; sourceTree = ""; };
73 | 4E74C8D046F416651B8972CC /* Pods-puzzle.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-puzzle.debug.xcconfig"; path = "Target Support Files/Pods-puzzle/Pods-puzzle.debug.xcconfig"; sourceTree = ""; };
74 | 500541AE058D4390A4EF2546 /* Oswald-VariableFont_wght.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-VariableFont_wght.ttf"; path = "../assets/fonts/Oswald/Oswald-VariableFont_wght.ttf"; sourceTree = ""; };
75 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = puzzle/LaunchScreen.storyboard; sourceTree = ""; };
76 | 875B176E75CF44A88DA40498 /* Montserrat-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Black.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Black.ttf"; sourceTree = ""; };
77 | 89DBC52EBF71175CBC1F1B86 /* Pods-puzzle-puzzleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-puzzle-puzzleTests.release.xcconfig"; path = "Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests.release.xcconfig"; sourceTree = ""; };
78 | 8ACAC2E699BA4E28BC3919D2 /* Montserrat-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Medium.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Medium.ttf"; sourceTree = ""; };
79 | 980F1A9650344E469C533F65 /* Montserrat-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-ExtraBold.ttf"; path = "../assets/fonts/Montserrat/Montserrat-ExtraBold.ttf"; sourceTree = ""; };
80 | 9B347A90B3044386B84C086E /* Oswald-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-Regular.ttf"; path = "../assets/fonts/Oswald/static/Oswald-Regular.ttf"; sourceTree = ""; };
81 | A298BAD52FB44D30BE38E102 /* Montserrat-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-SemiBold.ttf"; path = "../assets/fonts/Montserrat/Montserrat-SemiBold.ttf"; sourceTree = ""; };
82 | A69E060C3D08099CBC30C3F6 /* libPods-puzzle.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-puzzle.a"; sourceTree = BUILT_PRODUCTS_DIR; };
83 | B589D86AE481476B92461C31 /* Montserrat-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Bold.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Bold.ttf"; sourceTree = ""; };
84 | C73C1EC3A9224540912BBC2E /* Oswald-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-Bold.ttf"; path = "../assets/fonts/Oswald/static/Oswald-Bold.ttf"; sourceTree = ""; };
85 | C9185110261F4E97BF3F2FE8 /* Montserrat-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-ExtraLight.ttf"; path = "../assets/fonts/Montserrat/Montserrat-ExtraLight.ttf"; sourceTree = ""; };
86 | C95EC444DAF447D9A7917883 /* Montserrat-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-Light.ttf"; path = "../assets/fonts/Montserrat/Montserrat-Light.ttf"; sourceTree = ""; };
87 | CD026861EEFF46E183F5D99B /* Oswald-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-SemiBold.ttf"; path = "../assets/fonts/Oswald/static/Oswald-SemiBold.ttf"; sourceTree = ""; };
88 | D034F23302DE94BC406628EB /* libPods-puzzle-puzzleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-puzzle-puzzleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
89 | D394C9CAA88542429DEEABA5 /* Oswald-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-Medium.ttf"; path = "../assets/fonts/Oswald/static/Oswald-Medium.ttf"; sourceTree = ""; };
90 | D971598838C84846B9FEDE42 /* Montserrat-SemiBoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-SemiBoldItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf"; sourceTree = ""; };
91 | DB9A760D0A734E098537553C /* Montserrat-BlackItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-BlackItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-BlackItalic.ttf"; sourceTree = ""; };
92 | E75444D82687BDA8185F03FB /* Pods-puzzle.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-puzzle.release.xcconfig"; path = "Target Support Files/Pods-puzzle/Pods-puzzle.release.xcconfig"; sourceTree = ""; };
93 | E982E262F7D349B3B5BE8A70 /* Montserrat-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-BoldItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-BoldItalic.ttf"; sourceTree = ""; };
94 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
95 | F2FEB0BA697C4F8BA497C1B9 /* Oswald-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Oswald-ExtraLight.ttf"; path = "../assets/fonts/Oswald/static/Oswald-ExtraLight.ttf"; sourceTree = ""; };
96 | FF858DB5C10A4158A93AA23E /* Montserrat-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Montserrat-LightItalic.ttf"; path = "../assets/fonts/Montserrat/Montserrat-LightItalic.ttf"; sourceTree = ""; };
97 | /* End PBXFileReference section */
98 |
99 | /* Begin PBXFrameworksBuildPhase section */
100 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
101 | isa = PBXFrameworksBuildPhase;
102 | buildActionMask = 2147483647;
103 | files = (
104 | F75F59A26720C5B4634ECC5E /* libPods-puzzle-puzzleTests.a in Frameworks */,
105 | );
106 | runOnlyForDeploymentPostprocessing = 0;
107 | };
108 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
109 | isa = PBXFrameworksBuildPhase;
110 | buildActionMask = 2147483647;
111 | files = (
112 | 10F3845A120EE39174EC6015 /* libPods-puzzle.a in Frameworks */,
113 | );
114 | runOnlyForDeploymentPostprocessing = 0;
115 | };
116 | /* End PBXFrameworksBuildPhase section */
117 |
118 | /* Begin PBXGroup section */
119 | 00E356EF1AD99517003FC87E /* puzzleTests */ = {
120 | isa = PBXGroup;
121 | children = (
122 | 00E356F21AD99517003FC87E /* puzzleTests.m */,
123 | 00E356F01AD99517003FC87E /* Supporting Files */,
124 | );
125 | path = puzzleTests;
126 | sourceTree = "";
127 | };
128 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
129 | isa = PBXGroup;
130 | children = (
131 | 00E356F11AD99517003FC87E /* Info.plist */,
132 | );
133 | name = "Supporting Files";
134 | sourceTree = "";
135 | };
136 | 13B07FAE1A68108700A75B9A /* puzzle */ = {
137 | isa = PBXGroup;
138 | children = (
139 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
140 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
141 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
142 | 13B07FB61A68108700A75B9A /* Info.plist */,
143 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
144 | 13B07FB71A68108700A75B9A /* main.m */,
145 | );
146 | name = puzzle;
147 | sourceTree = "";
148 | };
149 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
150 | isa = PBXGroup;
151 | children = (
152 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
153 | A69E060C3D08099CBC30C3F6 /* libPods-puzzle.a */,
154 | D034F23302DE94BC406628EB /* libPods-puzzle-puzzleTests.a */,
155 | );
156 | name = Frameworks;
157 | sourceTree = "";
158 | };
159 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
160 | isa = PBXGroup;
161 | children = (
162 | );
163 | name = Libraries;
164 | sourceTree = "";
165 | };
166 | 83CBB9F61A601CBA00E9B192 = {
167 | isa = PBXGroup;
168 | children = (
169 | 13B07FAE1A68108700A75B9A /* puzzle */,
170 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
171 | 00E356EF1AD99517003FC87E /* puzzleTests */,
172 | 83CBBA001A601CBA00E9B192 /* Products */,
173 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
174 | A8AFD3C53ECBD9BC7E027A06 /* Pods */,
175 | 9052E2D580DD45B993D23C64 /* Resources */,
176 | );
177 | indentWidth = 2;
178 | sourceTree = "";
179 | tabWidth = 2;
180 | usesTabs = 0;
181 | };
182 | 83CBBA001A601CBA00E9B192 /* Products */ = {
183 | isa = PBXGroup;
184 | children = (
185 | 13B07F961A680F5B00A75B9A /* puzzle.app */,
186 | 00E356EE1AD99517003FC87E /* puzzleTests.xctest */,
187 | );
188 | name = Products;
189 | sourceTree = "";
190 | };
191 | 9052E2D580DD45B993D23C64 /* Resources */ = {
192 | isa = PBXGroup;
193 | children = (
194 | 875B176E75CF44A88DA40498 /* Montserrat-Black.ttf */,
195 | DB9A760D0A734E098537553C /* Montserrat-BlackItalic.ttf */,
196 | B589D86AE481476B92461C31 /* Montserrat-Bold.ttf */,
197 | E982E262F7D349B3B5BE8A70 /* Montserrat-BoldItalic.ttf */,
198 | 980F1A9650344E469C533F65 /* Montserrat-ExtraBold.ttf */,
199 | 0C5A4A4C15B849B7A6DB492C /* Montserrat-ExtraBoldItalic.ttf */,
200 | C9185110261F4E97BF3F2FE8 /* Montserrat-ExtraLight.ttf */,
201 | 1D02706D83B743CF871CCAB0 /* Montserrat-ExtraLightItalic.ttf */,
202 | 2F2BB382AA1C4D28A9F08A0B /* Montserrat-Italic.ttf */,
203 | C95EC444DAF447D9A7917883 /* Montserrat-Light.ttf */,
204 | FF858DB5C10A4158A93AA23E /* Montserrat-LightItalic.ttf */,
205 | 8ACAC2E699BA4E28BC3919D2 /* Montserrat-Medium.ttf */,
206 | 0B6C592A14954E90960F4DA7 /* Montserrat-MediumItalic.ttf */,
207 | 2A70A25AFDE24FCBAA80C3FE /* Montserrat-Regular.ttf */,
208 | A298BAD52FB44D30BE38E102 /* Montserrat-SemiBold.ttf */,
209 | D971598838C84846B9FEDE42 /* Montserrat-SemiBoldItalic.ttf */,
210 | 3841A6053DBA458E896AF9CC /* Montserrat-Thin.ttf */,
211 | 00E81A868A084DF197C767F6 /* Montserrat-ThinItalic.ttf */,
212 | 500541AE058D4390A4EF2546 /* Oswald-VariableFont_wght.ttf */,
213 | C73C1EC3A9224540912BBC2E /* Oswald-Bold.ttf */,
214 | F2FEB0BA697C4F8BA497C1B9 /* Oswald-ExtraLight.ttf */,
215 | 200E8EC385EE4354AB7713A0 /* Oswald-Light.ttf */,
216 | D394C9CAA88542429DEEABA5 /* Oswald-Medium.ttf */,
217 | 9B347A90B3044386B84C086E /* Oswald-Regular.ttf */,
218 | CD026861EEFF46E183F5D99B /* Oswald-SemiBold.ttf */,
219 | );
220 | name = Resources;
221 | path = "";
222 | sourceTree = "";
223 | };
224 | A8AFD3C53ECBD9BC7E027A06 /* Pods */ = {
225 | isa = PBXGroup;
226 | children = (
227 | 4E74C8D046F416651B8972CC /* Pods-puzzle.debug.xcconfig */,
228 | E75444D82687BDA8185F03FB /* Pods-puzzle.release.xcconfig */,
229 | 0E784D00B2ADCAD450ABEACA /* Pods-puzzle-puzzleTests.debug.xcconfig */,
230 | 89DBC52EBF71175CBC1F1B86 /* Pods-puzzle-puzzleTests.release.xcconfig */,
231 | );
232 | name = Pods;
233 | path = Pods;
234 | sourceTree = "";
235 | };
236 | /* End PBXGroup section */
237 |
238 | /* Begin PBXNativeTarget section */
239 | 00E356ED1AD99517003FC87E /* puzzleTests */ = {
240 | isa = PBXNativeTarget;
241 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "puzzleTests" */;
242 | buildPhases = (
243 | 4510E74FEDA2A482E2B19E47 /* [CP] Check Pods Manifest.lock */,
244 | 00E356EA1AD99517003FC87E /* Sources */,
245 | 00E356EB1AD99517003FC87E /* Frameworks */,
246 | 00E356EC1AD99517003FC87E /* Resources */,
247 | 1C4F9A5BF251B53070C24C8C /* [CP] Embed Pods Frameworks */,
248 | C6D0680312A1B08ACE213336 /* [CP] Copy Pods Resources */,
249 | );
250 | buildRules = (
251 | );
252 | dependencies = (
253 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
254 | );
255 | name = puzzleTests;
256 | productName = puzzleTests;
257 | productReference = 00E356EE1AD99517003FC87E /* puzzleTests.xctest */;
258 | productType = "com.apple.product-type.bundle.unit-test";
259 | };
260 | 13B07F861A680F5B00A75B9A /* puzzle */ = {
261 | isa = PBXNativeTarget;
262 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "puzzle" */;
263 | buildPhases = (
264 | 3A81AD8FC06833DBEC91AA19 /* [CP] Check Pods Manifest.lock */,
265 | FD10A7F022414F080027D42C /* Start Packager */,
266 | 13B07F871A680F5B00A75B9A /* Sources */,
267 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
268 | 13B07F8E1A680F5B00A75B9A /* Resources */,
269 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
270 | FC9B8A9C26FA9F4D1509D726 /* [CP] Embed Pods Frameworks */,
271 | FC3AEBC1390DBDDBA879B5D5 /* [CP] Copy Pods Resources */,
272 | );
273 | buildRules = (
274 | );
275 | dependencies = (
276 | );
277 | name = puzzle;
278 | productName = puzzle;
279 | productReference = 13B07F961A680F5B00A75B9A /* puzzle.app */;
280 | productType = "com.apple.product-type.application";
281 | };
282 | /* End PBXNativeTarget section */
283 |
284 | /* Begin PBXProject section */
285 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
286 | isa = PBXProject;
287 | attributes = {
288 | LastUpgradeCheck = 1210;
289 | TargetAttributes = {
290 | 00E356ED1AD99517003FC87E = {
291 | CreatedOnToolsVersion = 6.2;
292 | TestTargetID = 13B07F861A680F5B00A75B9A;
293 | };
294 | 13B07F861A680F5B00A75B9A = {
295 | LastSwiftMigration = 1120;
296 | };
297 | };
298 | };
299 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "puzzle" */;
300 | compatibilityVersion = "Xcode 12.0";
301 | developmentRegion = en;
302 | hasScannedForEncodings = 0;
303 | knownRegions = (
304 | en,
305 | Base,
306 | );
307 | mainGroup = 83CBB9F61A601CBA00E9B192;
308 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
309 | projectDirPath = "";
310 | projectRoot = "";
311 | targets = (
312 | 13B07F861A680F5B00A75B9A /* puzzle */,
313 | 00E356ED1AD99517003FC87E /* puzzleTests */,
314 | );
315 | };
316 | /* End PBXProject section */
317 |
318 | /* Begin PBXResourcesBuildPhase section */
319 | 00E356EC1AD99517003FC87E /* Resources */ = {
320 | isa = PBXResourcesBuildPhase;
321 | buildActionMask = 2147483647;
322 | files = (
323 | );
324 | runOnlyForDeploymentPostprocessing = 0;
325 | };
326 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
327 | isa = PBXResourcesBuildPhase;
328 | buildActionMask = 2147483647;
329 | files = (
330 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
331 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
332 | C1593ED30CFD42F1B046CD81 /* Montserrat-Black.ttf in Resources */,
333 | BF0D8B89FC034FF28EECF77B /* Montserrat-BlackItalic.ttf in Resources */,
334 | 76404BF4E2364879A92FD15D /* Montserrat-Bold.ttf in Resources */,
335 | 2E47B4EE36054A61A826EABE /* Montserrat-BoldItalic.ttf in Resources */,
336 | 0D86EDFE3C7B47B68711D2C4 /* Montserrat-ExtraBold.ttf in Resources */,
337 | 102C1B253A684FC085BF0544 /* Montserrat-ExtraBoldItalic.ttf in Resources */,
338 | 23A449749D894EACB03D6772 /* Montserrat-ExtraLight.ttf in Resources */,
339 | DC5F9E74634A4B2C861BE1F1 /* Montserrat-ExtraLightItalic.ttf in Resources */,
340 | 974361CD0C5E4F66AEA0D428 /* Montserrat-Italic.ttf in Resources */,
341 | E76ACB3EB9A54D1AA479F01E /* Montserrat-Light.ttf in Resources */,
342 | FF35B3D2483A477B9E961135 /* Montserrat-LightItalic.ttf in Resources */,
343 | 34C18A179A534A8E85C8B66E /* Montserrat-Medium.ttf in Resources */,
344 | A044FDB1F73E41018AA8F151 /* Montserrat-MediumItalic.ttf in Resources */,
345 | ACCDFF2DC7414B4F9DD68828 /* Montserrat-Regular.ttf in Resources */,
346 | D271677E4EB243C9BD047E68 /* Montserrat-SemiBold.ttf in Resources */,
347 | 8A7F1EEFA1474819B07518BF /* Montserrat-SemiBoldItalic.ttf in Resources */,
348 | 61E5020C753541C99A9D7A96 /* Montserrat-Thin.ttf in Resources */,
349 | 6ADFCDEDC42E4EC6B12FDAE4 /* Montserrat-ThinItalic.ttf in Resources */,
350 | 83FE013EB3194F4D9B309D89 /* Oswald-VariableFont_wght.ttf in Resources */,
351 | 17282F7FAD62416180DAE4D2 /* Oswald-Bold.ttf in Resources */,
352 | 5C24E7E052F541DE8DC6189F /* Oswald-ExtraLight.ttf in Resources */,
353 | 13F19F411AFE473490F25825 /* Oswald-Light.ttf in Resources */,
354 | 0571D681CF7044D2ABC410D3 /* Oswald-Medium.ttf in Resources */,
355 | 0ED73C24420846C2B009B085 /* Oswald-Regular.ttf in Resources */,
356 | 3CF6B2E68D814CE3BC968D76 /* Oswald-SemiBold.ttf in Resources */,
357 | );
358 | runOnlyForDeploymentPostprocessing = 0;
359 | };
360 | /* End PBXResourcesBuildPhase section */
361 |
362 | /* Begin PBXShellScriptBuildPhase section */
363 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
364 | isa = PBXShellScriptBuildPhase;
365 | buildActionMask = 2147483647;
366 | files = (
367 | );
368 | inputPaths = (
369 | );
370 | name = "Bundle React Native code and images";
371 | outputPaths = (
372 | );
373 | runOnlyForDeploymentPostprocessing = 0;
374 | shellPath = /bin/sh;
375 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
376 | };
377 | 1C4F9A5BF251B53070C24C8C /* [CP] Embed Pods Frameworks */ = {
378 | isa = PBXShellScriptBuildPhase;
379 | buildActionMask = 2147483647;
380 | files = (
381 | );
382 | inputFileListPaths = (
383 | "${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
384 | );
385 | name = "[CP] Embed Pods Frameworks";
386 | outputFileListPaths = (
387 | "${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
388 | );
389 | runOnlyForDeploymentPostprocessing = 0;
390 | shellPath = /bin/sh;
391 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-frameworks.sh\"\n";
392 | showEnvVarsInLog = 0;
393 | };
394 | 3A81AD8FC06833DBEC91AA19 /* [CP] Check Pods Manifest.lock */ = {
395 | isa = PBXShellScriptBuildPhase;
396 | buildActionMask = 2147483647;
397 | files = (
398 | );
399 | inputFileListPaths = (
400 | );
401 | inputPaths = (
402 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
403 | "${PODS_ROOT}/Manifest.lock",
404 | );
405 | name = "[CP] Check Pods Manifest.lock";
406 | outputFileListPaths = (
407 | );
408 | outputPaths = (
409 | "$(DERIVED_FILE_DIR)/Pods-puzzle-checkManifestLockResult.txt",
410 | );
411 | runOnlyForDeploymentPostprocessing = 0;
412 | shellPath = /bin/sh;
413 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
414 | showEnvVarsInLog = 0;
415 | };
416 | 4510E74FEDA2A482E2B19E47 /* [CP] Check Pods Manifest.lock */ = {
417 | isa = PBXShellScriptBuildPhase;
418 | buildActionMask = 2147483647;
419 | files = (
420 | );
421 | inputFileListPaths = (
422 | );
423 | inputPaths = (
424 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
425 | "${PODS_ROOT}/Manifest.lock",
426 | );
427 | name = "[CP] Check Pods Manifest.lock";
428 | outputFileListPaths = (
429 | );
430 | outputPaths = (
431 | "$(DERIVED_FILE_DIR)/Pods-puzzle-puzzleTests-checkManifestLockResult.txt",
432 | );
433 | runOnlyForDeploymentPostprocessing = 0;
434 | shellPath = /bin/sh;
435 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
436 | showEnvVarsInLog = 0;
437 | };
438 | C6D0680312A1B08ACE213336 /* [CP] Copy Pods Resources */ = {
439 | isa = PBXShellScriptBuildPhase;
440 | buildActionMask = 2147483647;
441 | files = (
442 | );
443 | inputFileListPaths = (
444 | "${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
445 | );
446 | name = "[CP] Copy Pods Resources";
447 | outputFileListPaths = (
448 | "${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
449 | );
450 | runOnlyForDeploymentPostprocessing = 0;
451 | shellPath = /bin/sh;
452 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-puzzle-puzzleTests/Pods-puzzle-puzzleTests-resources.sh\"\n";
453 | showEnvVarsInLog = 0;
454 | };
455 | FC3AEBC1390DBDDBA879B5D5 /* [CP] Copy Pods Resources */ = {
456 | isa = PBXShellScriptBuildPhase;
457 | buildActionMask = 2147483647;
458 | files = (
459 | );
460 | inputFileListPaths = (
461 | "${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-resources-${CONFIGURATION}-input-files.xcfilelist",
462 | );
463 | name = "[CP] Copy Pods Resources";
464 | outputFileListPaths = (
465 | "${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-resources-${CONFIGURATION}-output-files.xcfilelist",
466 | );
467 | runOnlyForDeploymentPostprocessing = 0;
468 | shellPath = /bin/sh;
469 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-resources.sh\"\n";
470 | showEnvVarsInLog = 0;
471 | };
472 | FC9B8A9C26FA9F4D1509D726 /* [CP] Embed Pods Frameworks */ = {
473 | isa = PBXShellScriptBuildPhase;
474 | buildActionMask = 2147483647;
475 | files = (
476 | );
477 | inputFileListPaths = (
478 | "${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-frameworks-${CONFIGURATION}-input-files.xcfilelist",
479 | );
480 | name = "[CP] Embed Pods Frameworks";
481 | outputFileListPaths = (
482 | "${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-frameworks-${CONFIGURATION}-output-files.xcfilelist",
483 | );
484 | runOnlyForDeploymentPostprocessing = 0;
485 | shellPath = /bin/sh;
486 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-puzzle/Pods-puzzle-frameworks.sh\"\n";
487 | showEnvVarsInLog = 0;
488 | };
489 | FD10A7F022414F080027D42C /* Start Packager */ = {
490 | isa = PBXShellScriptBuildPhase;
491 | buildActionMask = 2147483647;
492 | files = (
493 | );
494 | inputFileListPaths = (
495 | );
496 | inputPaths = (
497 | );
498 | name = "Start Packager";
499 | outputFileListPaths = (
500 | );
501 | outputPaths = (
502 | );
503 | runOnlyForDeploymentPostprocessing = 0;
504 | shellPath = /bin/sh;
505 | 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";
506 | showEnvVarsInLog = 0;
507 | };
508 | /* End PBXShellScriptBuildPhase section */
509 |
510 | /* Begin PBXSourcesBuildPhase section */
511 | 00E356EA1AD99517003FC87E /* Sources */ = {
512 | isa = PBXSourcesBuildPhase;
513 | buildActionMask = 2147483647;
514 | files = (
515 | 00E356F31AD99517003FC87E /* puzzleTests.m in Sources */,
516 | );
517 | runOnlyForDeploymentPostprocessing = 0;
518 | };
519 | 13B07F871A680F5B00A75B9A /* Sources */ = {
520 | isa = PBXSourcesBuildPhase;
521 | buildActionMask = 2147483647;
522 | files = (
523 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
524 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
525 | );
526 | runOnlyForDeploymentPostprocessing = 0;
527 | };
528 | /* End PBXSourcesBuildPhase section */
529 |
530 | /* Begin PBXTargetDependency section */
531 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
532 | isa = PBXTargetDependency;
533 | target = 13B07F861A680F5B00A75B9A /* puzzle */;
534 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
535 | };
536 | /* End PBXTargetDependency section */
537 |
538 | /* Begin XCBuildConfiguration section */
539 | 00E356F61AD99517003FC87E /* Debug */ = {
540 | isa = XCBuildConfiguration;
541 | baseConfigurationReference = 0E784D00B2ADCAD450ABEACA /* Pods-puzzle-puzzleTests.debug.xcconfig */;
542 | buildSettings = {
543 | BUNDLE_LOADER = "$(TEST_HOST)";
544 | GCC_PREPROCESSOR_DEFINITIONS = (
545 | "DEBUG=1",
546 | "$(inherited)",
547 | );
548 | INFOPLIST_FILE = puzzleTests/Info.plist;
549 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
550 | LD_RUNPATH_SEARCH_PATHS = (
551 | "$(inherited)",
552 | "@executable_path/Frameworks",
553 | "@loader_path/Frameworks",
554 | );
555 | OTHER_LDFLAGS = (
556 | "-ObjC",
557 | "-lc++",
558 | "$(inherited)",
559 | );
560 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
561 | PRODUCT_NAME = "$(TARGET_NAME)";
562 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/puzzle.app/puzzle";
563 | };
564 | name = Debug;
565 | };
566 | 00E356F71AD99517003FC87E /* Release */ = {
567 | isa = XCBuildConfiguration;
568 | baseConfigurationReference = 89DBC52EBF71175CBC1F1B86 /* Pods-puzzle-puzzleTests.release.xcconfig */;
569 | buildSettings = {
570 | BUNDLE_LOADER = "$(TEST_HOST)";
571 | COPY_PHASE_STRIP = NO;
572 | INFOPLIST_FILE = puzzleTests/Info.plist;
573 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
574 | LD_RUNPATH_SEARCH_PATHS = (
575 | "$(inherited)",
576 | "@executable_path/Frameworks",
577 | "@loader_path/Frameworks",
578 | );
579 | OTHER_LDFLAGS = (
580 | "-ObjC",
581 | "-lc++",
582 | "$(inherited)",
583 | );
584 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
585 | PRODUCT_NAME = "$(TARGET_NAME)";
586 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/puzzle.app/puzzle";
587 | };
588 | name = Release;
589 | };
590 | 13B07F941A680F5B00A75B9A /* Debug */ = {
591 | isa = XCBuildConfiguration;
592 | baseConfigurationReference = 4E74C8D046F416651B8972CC /* Pods-puzzle.debug.xcconfig */;
593 | buildSettings = {
594 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
595 | CLANG_ENABLE_MODULES = YES;
596 | CURRENT_PROJECT_VERSION = 1;
597 | ENABLE_BITCODE = NO;
598 | INFOPLIST_FILE = puzzle/Info.plist;
599 | LD_RUNPATH_SEARCH_PATHS = (
600 | "$(inherited)",
601 | "@executable_path/Frameworks",
602 | );
603 | OTHER_LDFLAGS = (
604 | "$(inherited)",
605 | "-ObjC",
606 | "-lc++",
607 | );
608 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
609 | PRODUCT_NAME = puzzle;
610 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
611 | SWIFT_VERSION = 5.0;
612 | VERSIONING_SYSTEM = "apple-generic";
613 | };
614 | name = Debug;
615 | };
616 | 13B07F951A680F5B00A75B9A /* Release */ = {
617 | isa = XCBuildConfiguration;
618 | baseConfigurationReference = E75444D82687BDA8185F03FB /* Pods-puzzle.release.xcconfig */;
619 | buildSettings = {
620 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
621 | CLANG_ENABLE_MODULES = YES;
622 | CURRENT_PROJECT_VERSION = 1;
623 | INFOPLIST_FILE = puzzle/Info.plist;
624 | LD_RUNPATH_SEARCH_PATHS = (
625 | "$(inherited)",
626 | "@executable_path/Frameworks",
627 | );
628 | OTHER_LDFLAGS = (
629 | "$(inherited)",
630 | "-ObjC",
631 | "-lc++",
632 | );
633 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
634 | PRODUCT_NAME = puzzle;
635 | SWIFT_VERSION = 5.0;
636 | VERSIONING_SYSTEM = "apple-generic";
637 | };
638 | name = Release;
639 | };
640 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
641 | isa = XCBuildConfiguration;
642 | buildSettings = {
643 | ALWAYS_SEARCH_USER_PATHS = NO;
644 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
645 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
646 | CLANG_CXX_LIBRARY = "libc++";
647 | CLANG_ENABLE_MODULES = YES;
648 | CLANG_ENABLE_OBJC_ARC = YES;
649 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
650 | CLANG_WARN_BOOL_CONVERSION = YES;
651 | CLANG_WARN_COMMA = YES;
652 | CLANG_WARN_CONSTANT_CONVERSION = YES;
653 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
654 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
655 | CLANG_WARN_EMPTY_BODY = YES;
656 | CLANG_WARN_ENUM_CONVERSION = YES;
657 | CLANG_WARN_INFINITE_RECURSION = YES;
658 | CLANG_WARN_INT_CONVERSION = YES;
659 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
660 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
661 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
662 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
663 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
664 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
665 | CLANG_WARN_STRICT_PROTOTYPES = YES;
666 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
667 | CLANG_WARN_UNREACHABLE_CODE = YES;
668 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
669 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
670 | COPY_PHASE_STRIP = NO;
671 | ENABLE_STRICT_OBJC_MSGSEND = YES;
672 | ENABLE_TESTABILITY = YES;
673 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
674 | GCC_C_LANGUAGE_STANDARD = gnu99;
675 | GCC_DYNAMIC_NO_PIC = NO;
676 | GCC_NO_COMMON_BLOCKS = YES;
677 | GCC_OPTIMIZATION_LEVEL = 0;
678 | GCC_PREPROCESSOR_DEFINITIONS = (
679 | "DEBUG=1",
680 | "$(inherited)",
681 | );
682 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
683 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
684 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
685 | GCC_WARN_UNDECLARED_SELECTOR = YES;
686 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
687 | GCC_WARN_UNUSED_FUNCTION = YES;
688 | GCC_WARN_UNUSED_VARIABLE = YES;
689 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
690 | LD_RUNPATH_SEARCH_PATHS = (
691 | /usr/lib/swift,
692 | "$(inherited)",
693 | );
694 | LIBRARY_SEARCH_PATHS = (
695 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
696 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
697 | "\"$(inherited)\"",
698 | );
699 | MTL_ENABLE_DEBUG_INFO = YES;
700 | ONLY_ACTIVE_ARCH = YES;
701 | SDKROOT = iphoneos;
702 | };
703 | name = Debug;
704 | };
705 | 83CBBA211A601CBA00E9B192 /* Release */ = {
706 | isa = XCBuildConfiguration;
707 | buildSettings = {
708 | ALWAYS_SEARCH_USER_PATHS = NO;
709 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
710 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
711 | CLANG_CXX_LIBRARY = "libc++";
712 | CLANG_ENABLE_MODULES = YES;
713 | CLANG_ENABLE_OBJC_ARC = YES;
714 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
715 | CLANG_WARN_BOOL_CONVERSION = YES;
716 | CLANG_WARN_COMMA = YES;
717 | CLANG_WARN_CONSTANT_CONVERSION = YES;
718 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
719 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
720 | CLANG_WARN_EMPTY_BODY = YES;
721 | CLANG_WARN_ENUM_CONVERSION = YES;
722 | CLANG_WARN_INFINITE_RECURSION = YES;
723 | CLANG_WARN_INT_CONVERSION = YES;
724 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
725 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
726 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
727 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
728 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
729 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
730 | CLANG_WARN_STRICT_PROTOTYPES = YES;
731 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
732 | CLANG_WARN_UNREACHABLE_CODE = YES;
733 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
734 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
735 | COPY_PHASE_STRIP = YES;
736 | ENABLE_NS_ASSERTIONS = NO;
737 | ENABLE_STRICT_OBJC_MSGSEND = YES;
738 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
739 | GCC_C_LANGUAGE_STANDARD = gnu99;
740 | GCC_NO_COMMON_BLOCKS = YES;
741 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
742 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
743 | GCC_WARN_UNDECLARED_SELECTOR = YES;
744 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
745 | GCC_WARN_UNUSED_FUNCTION = YES;
746 | GCC_WARN_UNUSED_VARIABLE = YES;
747 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
748 | LD_RUNPATH_SEARCH_PATHS = (
749 | /usr/lib/swift,
750 | "$(inherited)",
751 | );
752 | LIBRARY_SEARCH_PATHS = (
753 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
754 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
755 | "\"$(inherited)\"",
756 | );
757 | MTL_ENABLE_DEBUG_INFO = NO;
758 | SDKROOT = iphoneos;
759 | VALIDATE_PRODUCT = YES;
760 | };
761 | name = Release;
762 | };
763 | /* End XCBuildConfiguration section */
764 |
765 | /* Begin XCConfigurationList section */
766 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "puzzleTests" */ = {
767 | isa = XCConfigurationList;
768 | buildConfigurations = (
769 | 00E356F61AD99517003FC87E /* Debug */,
770 | 00E356F71AD99517003FC87E /* Release */,
771 | );
772 | defaultConfigurationIsVisible = 0;
773 | defaultConfigurationName = Release;
774 | };
775 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "puzzle" */ = {
776 | isa = XCConfigurationList;
777 | buildConfigurations = (
778 | 13B07F941A680F5B00A75B9A /* Debug */,
779 | 13B07F951A680F5B00A75B9A /* Release */,
780 | );
781 | defaultConfigurationIsVisible = 0;
782 | defaultConfigurationName = Release;
783 | };
784 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "puzzle" */ = {
785 | isa = XCConfigurationList;
786 | buildConfigurations = (
787 | 83CBBA201A601CBA00E9B192 /* Debug */,
788 | 83CBBA211A601CBA00E9B192 /* Release */,
789 | );
790 | defaultConfigurationIsVisible = 0;
791 | defaultConfigurationName = Release;
792 | };
793 | /* End XCConfigurationList section */
794 | };
795 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
796 | }
797 |
--------------------------------------------------------------------------------