Giter Site home page Giter Site logo

haythem-ouederni / reactnative-typescript-boilerplates Goto Github PK

View Code? Open in Web Editor NEW
6.0 3.0 1.0 4.65 MB

Best practices for ReactNative production ready boilerplates based on Typescript

License: MIT License

Python 3.99% Java 3.59% Objective-C 11.40% TypeScript 81.01%
react-native typescript firebase i18n redux react-native-navigation axios react-native-storage nativebase

reactnative-typescript-boilerplates's Introduction

Introduction

This project aims to provide you with boilerplates based on the best practices to build a production ready mobile application using ReactNative. It would serve at the same time as a tutorial.

The choice was made to perform all the development in Typescript instead of the combination of ES6 and propTypes.

Each branch of this ReactNative project will reflect the use of a specific librairy, tool or framework, ...

For example, the firebase-example branch contains a full example of an application (still under construction) that uses Firebase for its database.

The master branch contains the basic setup.

Many other branches are to come to demonstrate the use of :

  • Google Maps
  • Integrated camera (Facebook Messenger like)
  • Native video/sound player
  • ... and all other good ideas the community would come with

Run the app

These are the different steps to run the app :

1 - Make sure you have ReactNative cli, npm, yarn and Typescript installed on your machine

2 - Download or clone the source code of this project

3 - Open a terminal and go within the root folder of the project

4 - Install the different librairies by running, within the terminal, the following command line : yarn

5 - Put your own TMDB api key within the .env (TMDB is used to demonstrate the http requests)

6 - Within the terminal, run yarn start:android if you want to start the app on an android device else run yarn start:ios for iOS devices.

Tutorial

The following paragraphs contain the main information/links that were used to put in place the master branch of this project.

The mains ideas are :

  • the use of Typescript
  • the use of Redux for state management
  • the use of Wix's React Native Navigation to handle the navigation within the app.

Change the entry files

In a default ReactNative project, the entry files (the javascript files used to bootstrap the app) are placed within the root folder of the project. But to insure a better architecture and so better readability of the code, all the ts/tsx (Typescript) files are located within the src folder. And because the ReactNative is based on javascript and not typescript these files are transpiled to javascript and put within the build folder. So the Android and iOS projects must, now, point the entry files that are located within the build folder.

The following steps are inspired from the Refactor Android to TypeScript paragraph in this link

The tsconfig.json is configured such as the js files are built within a build directory at the project's root.

  1. For Android

Open android/app/build.gradle and add the following line before apply from "../../node_modules/react-native/react.gradle"

project.ext.react = [

    entryFile: "build/src/index.android.js"

]

And open MainApplication.java and add the following method within the ReactNativeHost class definition :

@Override
protected String getJSMainModuleName() {
  return "build/src/index.android";
}
  1. For iOS

Open ios/RNTestProject/AppDelegate.m and change "index.ios" to "build/src/index.ios".

jsCodeLocation = [[RCTBundleURLProvider sharedSettings]] jsBundleURLForBundleRoot:@"build/src/index.ios" 
fallbackResource:nil];

Library choice for custom elements

Because ReactNative doesn't come with full ready-to-use UI components, the use of an external library for UI compnents is preferable to save time. You can choose between NativeBase or ReactNativeElements. For the moment NativeBase is used for the project.

NativeBase

NativeBase on github

NativeBase kitchen sink APP

React Native Elements

React Native Elements on github

React Native Elements kitchen sink APP

Use Typescript

Here is the link that used to put in place the use of Typescript within this ReactNative project project.

It wasn't 100% followed. For example the tests are kept under __tests__ folder, the js files are created at the same folder than the tsx file, not all the tslint configuration is used...

JSX option documentation.

tsconfig.json file information about the inclusion of @types.

TypeScript compiler options

Take a look at the tsconfig.json file to have an idea about the configuration put in place.

Be careful :

  • when using custom components
  • with The as operator : it is encouraged to use as notation insteaod of <type> notation

Navigation

The React Native Navigation library is used :

Make sure to perform the specific steps for ios

React Native config

Module to expose config variables to your javascript code in React Native, supporting both iOS and Android.

Setup :

1 - yarn add react-native-config

2 - react-native link react-native-config

Add assets folder

This folder can be used to put the different assets of the project like photos, videos, ...

This link was used to make the assets' content available to ts/js files using "assets" as a reference.

The trick is to add a package.json file to the assets folder.

{
  "name": "assets"
}

Set the Splash screen for Android

More information in this link.

Override getSplashLayout or createSplashLayout in MainActivity to provide a splash layout which will be displayed while Js context initialises, for example:

import android.widget.LinearLayout;
import android.graphics.Color;
import android.widget.TextView;
import android.view.Gravity;
import android.util.TypedValue;

import com.reactnativenavigation.controllers.SplashActivity;

public class MainActivity extends SplashActivity {

    @Override
    public LinearLayout createSplashLayout() {
        LinearLayout view = new LinearLayout(this);
        TextView textView = new TextView(this);

        view.setBackgroundColor(Color.parseColor("#607D8B"));
        view.setGravity(Gravity.CENTER);

        textView.setTextColor(Color.parseColor("#FFFFFF"));
        textView.setText("React Native Navigation");
        textView.setGravity(Gravity.CENTER);
        textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 40);

        view.addView(textView);
        return view;
    }
}

Using Axiosfor http requests

Axios is used to run http requests and load resources from a remote URL.

Here is the axios documentation.

Run : yarn add axios

Use Redux

Here are the links used to put in place Redux within this project :

  • This tutorial was used to add redux to the react native project

  • This project was used as a concrete example.

  • The added libraries are :

    • react-redux

    • redux

    • redux-thunk that helps making asynchronous calls

    • redux-logger

    • redux-immutable-state-invariant

    => the command to add them is : yarn add redux react-redux redux-thunk

Internationalization

react-native-i18n is used to handle the internationalization.

A manual setup is needed to complete this step.

Adding Local storage

react-native-storage is used to store data locally on the phone. It is based on the react native's AsyncStorage.

General Information

Code Push

CodePush is a cloud service that enables Cordova and React Native developers to deploy mobile app updates directly to their users’ devices. It works by acting as a central repository that developers can publish certain updates to (e.g. JS, HTML, CSS and image changes), and that apps can query for updates from (using our provided client SDKs). This allows you to have a more deterministic and direct engagement model with your end-users, while addressing bugs and/or adding small features that don’t require you to re-build a binary and/or re-distribute it through any public app stores.

Deco IDE

May be to use to bootstrap a screen's components display (design) but it lacks many other options such us formatting a file, when adding a new style property it doesn't add it automatically to the "Properties" tab to edit it other from the code.

Deco is an all-in-one development environment specifically designed for React Native. It can automatically set up a new project, search for open source components, and insert them. You can also tweak your app graphically in real time. Check it out if you use macOS.

Interesting links

reactnative-typescript-boilerplates's People

Contributors

haythem-ouederni avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

reactnative-typescript-boilerplates's Issues

Build error

Hi,

These are the errors I get while building. The missing fonts are the problem I guess.

yarn start:ios v0.24.6
$ npm run build && concurrently -r 'npm run watch' 'react-native run-ios' 

> [email protected] build /Users/user/Development/test/reactnative-typescript-boilerplates
> npm run clean && npm run lint && npm run tsc --


> [email protected] clean /Users/user/Development/test/reactnative-typescript-boilerplates
> rimraf src/**/*.js{,.map}


> [email protected] lint /Users/user/Development/test/reactnative-typescript-boilerplates
> tslint src/ts/**/*.ts{,x}



> [email protected] tsc /Users/user/Development/test/reactnative-typescript-boilerplates
> tsc


> [email protected] watch /Users/user/Development/test/reactnative-typescript-boilerplates
> npm run build -- -w


> [email protected] build /Users/user/Development/test/reactnative-typescript-boilerplates
> npm run clean && npm run lint && npm run tsc -- "-w"


> [email protected] clean /Users/user/Development/test/reactnative-typescript-boilerplates
> rimraf src/**/*.js{,.map}


> [email protected] lint /Users/user/Development/test/reactnative-typescript-boilerplates
> tslint src/ts/**/*.ts{,x}

Scanning 601 folders for symlinks in /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules (5ms)


> [email protected] tsc /Users/user/Development/test/reactnative-typescript-boilerplates
> tsc "-w"

Found Xcode project RNTestProject.xcodeproj
Launching iPhone 6 (iOS 10.3)...
Building using "xcodebuild -project RNTestProject.xcodeproj -configuration Debug -scheme RNTestProject -destination id=1271379F-18C0-4F77-B348-9205CA0834BA -derivedDataPath build"
9:28:50 AM - Compilation complete. Watching for file changes.


User defaults from command line:

    IDEDerivedDataPathOverride = /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build


=== BUILD TARGET yoga OF PROJECT React WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET jschelpers OF PROJECT React WITH CONFIGURATION Debug ===


Check dependencies


=== BUILD TARGET cxxreact OF PROJECT React WITH CONFIGURATION Debug ===

Check dependencies



=== BUILD TARGET React OF PROJECT React WITH CONFIGURATION Debug ===

Check dependencies



PhaseScriptExecution Start\ Packager /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/React.build/Debug-iphonesimulator/React.build/Script-006B79A01A781F38006873D1.sh
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native/React
    /bin/sh -c /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/React.build/Debug-iphonesimulator/React.build/Script-006B79A01A781F38006873D1.sh

Connection to localhost port 8081 [tcp/sunproxyadmin] succeeded!



PhaseScriptExecution Include\ RCTJSCProfiler /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/React.build/Debug-iphonesimulator/React.build/Script-142C4F7F1B582EA6001F0B58.sh
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native/React
    /bin/sh -c /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/React.build/Debug-iphonesimulator/React.build/Script-142C4F7F1B582EA6001F0B58.sh



=== BUILD TARGET RCTWebSocket OF PROJECT RCTWebSocket WITH CONFIGURATION Debug ===

Check dependencies



=== BUILD TARGET RCTGeolocation OF PROJECT RCTGeolocation WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET ReactNativeNavigation OF PROJECT ReactNativeNavigation WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RNI18n OF PROJECT RNI18n WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTNetwork OF PROJECT RCTNetwork WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTLinking OF PROJECT RCTLinking WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET ReactNativeConfig OF PROJECT ReactNativeConfig WITH CONFIGURATION Debug ===


Check dependencies



PhaseScriptExecution Run\ Script /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Script-EBE4E8281C7BF689000F8875.sh
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export ACTION=build
    export AD_HOC_CODE_SIGNING_ALLOWED=YES
    export ALTERNATE_GROUP=staff
    export ALTERNATE_MODE=u+w,go-w,a+rX
    export ALTERNATE_OWNER=user
    export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
    export ALWAYS_SEARCH_USER_PATHS=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY=NO
    export APPLY_RULES_IN_COPY_FILES=NO
    export ARCHS=x86_64
    export ARCHS_STANDARD="i386 x86_64"
    export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
    export ARCHS_STANDARD_32_BIT=i386
    export ARCHS_STANDARD_64_BIT=x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
    export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
    export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
    export BITCODE_GENERATION_MODE=marker
    export BUILD_ACTIVE_RESOURCES_ONLY=YES
    export BUILD_COMPONENTS="headers build"
    export BUILD_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products
    export BUILD_ROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products
    export BUILD_STYLE=
    export BUILD_VARIANTS=normal
    export BUILT_PRODUCTS_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator
    export CACHE_ROOT=/var/folders/c4/w9rntffx53j6c122_gp48nr40000gn/C/com.apple.DeveloperTools/8.3.3-8E3004b/Xcode
    export CCHROOT=/var/folders/c4/w9rntffx53j6c122_gp48nr40000gn/C/com.apple.DeveloperTools/8.3.3-8E3004b/Xcode
    export CHMOD=/bin/chmod
    export CHOWN=/usr/sbin/chown
    export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
    export CLANG_CXX_LIBRARY=libc++
    export CLANG_ENABLE_MODULES=YES
    export CLANG_ENABLE_MODULE_DEBUGGING=NO
    export CLANG_ENABLE_OBJC_ARC=YES
    export CLANG_MODULES_BUILD_SESSION_FILE=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/ModuleCache/Session.modulevalidation
    export CLANG_WARN_BOOL_CONVERSION=YES
    export CLANG_WARN_CONSTANT_CONVERSION=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
    export CLANG_WARN_EMPTY_BODY=YES
    export CLANG_WARN_ENUM_CONVERSION=YES
    export CLANG_WARN_INT_CONVERSION=YES
    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
    export CLANG_WARN_UNREACHABLE_CODE=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
    export CLASS_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/JavaClasses
    export CLEAN_PRECOMPS=YES
    export CLONE_HEADERS=NO
    export CODESIGNING_FOLDER_PATH=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libReactNativeConfig.a
    export CODE_SIGNING_ALLOWED=NO
    export CODE_SIGNING_REQUIRED=YES
    export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
    export CODE_SIGN_IDENTITY=-
    export COLOR_DIAGNOSTICS=NO
    export COMBINE_HIDPI_IMAGES=NO
    export COMMAND_MODE=legacy
    export COMPOSITE_SDK_DIRS=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/CompositeSDKs
    export COMPRESS_PNG_FILES=YES
    export CONFIGURATION=Debug
    export CONFIGURATION_BUILD_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator
    export CONFIGURATION_TEMP_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator
    export COPYING_PRESERVES_HFS_DATA=NO
    export COPY_HEADERS_RUN_UNIFDEF=NO
    export COPY_PHASE_STRIP=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
    export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
    export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
    export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk
    export CORRESPONDING_DEVICE_SDK_NAME=iphoneos10.3
    export CP=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
    export CURRENT_ARCH=x86_64
    export CURRENT_VARIANT=normal
    export DEAD_CODE_STRIPPING=YES
    export DEBUGGING_SYMBOLS=YES
    export DEBUG_INFORMATION_FORMAT=dwarf
    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
    export DEFINES_MODULE=NO
    export DEPLOYMENT_LOCATION=NO
    export DEPLOYMENT_POSTPROCESSING=NO
    export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
    export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
    export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3"
    export DERIVED_FILES_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/DerivedSources
    export DERIVED_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/DerivedSources
    export DERIVED_SOURCES_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE=English
    export DO_HEADER_SCANNING_IN_JAM=NO
    export DSTROOT=/tmp/ReactNativeConfig.dst
    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME=libReactNativeConfig.a.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
    export DWARF_DSYM_FOLDER_PATH=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator
    export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
    export ENABLE_BITCODE=NO
    export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
    export ENABLE_HEADER_DEPENDENCIES=YES
    export ENABLE_ON_DEMAND_RESOURCES=NO
    export ENABLE_STRICT_OBJC_MSGSEND=YES
    export ENABLE_TESTABILITY=YES
    export ENTITLEMENTS_REQUIRED=YES
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
  
  export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
    export EXECUTABLE_EXTENSION=a
    export EXECUTABLE_NAME=libReactNativeConfig.a
    export EXECUTABLE_PATH=libReactNativeConfig.a
    export EXECUTABLE_PREFIX=lib
    export EXECUTABLE_SUFFIX=.a
    export EXPANDED_CODE_SIGN_IDENTITY=
    export EXPANDED_CODE_SIGN_IDENTITY_NAME=
    export EXPANDED_PROVISIONING_PROFILE=
    export FILE_LIST=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects/LinkFileList
    export FIXED_FILES_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/FixedFiles
    export FRAMEWORK_FLAG_PREFIX=-framework
    export FRAMEWORK_SEARCH_PATHS="/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator "
    export FRAMEWORK_VERSION=A
    export FULL_PRODUCT_NAME=libReactNativeConfig.a
    export GCC3_VERSION=3.3
    export GCC_C_LANGUAGE_STANDARD=gnu99
    export GCC_DYNAMIC_NO_PIC=NO
    export GCC_NO_COMMON_BLOCKS=YES
    export GCC_OBJC_LEGACY_DISPATCH=YES
    export GCC_OPTIMIZATION_LEVEL=0
    export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
    export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
    export GCC_TREAT_WARNINGS_AS_ERRORS=NO
    export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
    export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
    export GCC_WARN_UNDECLARED_SELECTOR=YES
    export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION=YES
    export GCC_WARN_UNUSED_VARIABLE=YES
    export GENERATE_MASTER_OBJECT_FILE=NO
    export GENERATE_PKGINFO_FILE=NO
    export GENERATE_PROFILING_CODE=NO
    export GENERATE_TEXT_BASED_STUBS=NO
    export GID=20
    export GROUP=staff
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
    export HEADERMAP_USES_VFS=NO
    export HEADER_SEARCH_PATHS="/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/include /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios/../../react-native/React/** /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products"
    export HIDE_BITCODE_SYMBOLS=YES
    export HOME=/Users/user
    export ICONV=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
    export INFOPLIST_OUTPUT_FORMAT=binary
    export INFOPLIST_PREPROCESS=NO
    export INLINE_PRIVATE_FRAMEWORKS=NO
    export INSTALLHDRS_COPY_PHASE=NO
    export INSTALLHDRS_SCRIPT_PHASE=NO
    export INSTALL_DIR=/tmp/ReactNativeConfig.dst/usr/local/lib
    export INSTALL_GROUP=staff
    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
    export INSTALL_OWNER=user
    export INSTALL_PATH=/usr/local/lib
    export INSTALL_ROOT=/tmp/ReactNativeConfig.dst
    export IPHONEOS_DEPLOYMENT_TARGET=9.2
    export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
    export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES=YES
    export JAVA_ARCHIVE_TYPE=JAR
    export JAVA_COMPILER=/usr/bin/javac
    export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
    export JAVA_JAR_FLAGS=cv
    export JAVA_SOURCE_SUBDIR=.
    export JAVA_USE_DEPENDENCIES=YES
    export JAVA_ZIP_FLAGS=-urg
    export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
    export KEEP_PRIVATE_EXTERNS=NO
    export LD_DEPENDENCY_INFO_FILE=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig_dependency_info.dat
    export LD_GENERATE_MAP_FILE=NO
    export LD_MAP_FILE_PATH=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ReactNativeConfig-LinkMap-normal-x86_64.txt
    export LD_NO_PIE=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX=lex
    export LIBRARY_FLAG_NOSPACE=YES
    export LIBRARY_FLAG_PREFIX=-l
    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
    export LIBRARY_SEARCH_PATHS="/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator "
    export LINKER_DISPLAYS_MANGLED_NAMES=NO
    export LINK_FILE_LIST_normal_x86_64=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES=YES
    export LOCALIZABLE_CONTENT_DIR=
    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
    export LOCAL_APPS_DIR=/Applications
    export LOCAL_DEVELOPER_DIR=/Library/Developer
    export LOCAL_LIBRARY_DIR=/Library
    export LOCROOT=
    export LOCSYMROOT=
    export MACH_O_TYPE=staticlib
    export MAC_OS_X_PRODUCT_BUILD_VERSION=16G29
    export MAC_OS_X_VERSION_ACTUAL=101206
    export MAC_OS_X_VERSION_MAJOR=101200
    export MAC_OS_X_VERSION_MINOR=1206
    export METAL_LIBRARY_FILE_BASE=default
    export METAL_LIBRARY_OUTPUT_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/
    export MODULE_CACHE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/ModuleCache
    export MTL_ENABLE_DEBUG_INFO=YES
    export NATIVE_ARCH=i386
    export NATIVE_ARCH_32_BIT=i386
    export NATIVE_ARCH_64_BIT=x86_64
    export NATIVE_ARCH_ACTUAL=x86_64
    export NO_COMMON=YES
    export OBJC_ABI_VERSION=2
    export OBJECT_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects
    export OBJECT_FILE_DIR_normal=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal
    export OBJROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates
    export ONLY_ACTIVE_ARCH=YES
    export OS=MACOS
    export OSAC=/usr/bin/osacompile
    export OTHER_LDFLAGS=-ObjC
    export PACKAGE_TYPE=com.apple.package-type.static-library
    export PASCAL_STRINGS=YES
    export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user
/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
    export PFE_FILE_C_DIALECTS=objective-c
    export PKGINFO_FILE_PATH=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
    export PLATFORM_DISPLAY_NAME="iOS Simulator"
    export PLATFORM_NAME=iphonesimulator
    export PLATFORM_PREFERRED_ARCH=x86_64
    export PLIST_FILE_OUTPUT_FORMAT=binary
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
    export PRECOMP_DESTINATION_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
    export PRIVATE_HEADERS_FOLDER_PATH=/usr/local/include
    export PRODUCT_MODULE_NAME=ReactNativeConfig
    export PRODUCT_NAME=ReactNativeConfig
    export PRODUCT_SETTINGS_PATH=
    export PRODUCT_TYPE=com.apple.product-type.library.static
    export PROFILING_CODE=NO
    export PROJECT=ReactNativeConfig
    export PROJECT_DERIVED_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/DerivedSources
    export PROJECT_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export PROJECT_FILE_PATH=/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios/ReactNativeConfig.xcodeproj
    export PROJECT_NAME=ReactNativeConfig
    export PROJECT_TEMP_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build
    export PROJECT_TEMP_ROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates
    export PUBLIC_HEADERS_FOLDER_PATH=/usr/local/include
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
    export REMOVE_CVS_FROM_RESOURCES=YES
    export REMOVE_GIT_FROM_RESOURCES=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
    export REMOVE_HG_FROM_RESOURCES=YES
    export REMOVE_SVN_FROM_RESOURCES=YES
    export REZ_COLLECTOR_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ResourceManagerResources
    export REZ_EXECUTABLE=YES
    export REZ_OBJECTS_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS="/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator "
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
    export SCRIPT_INPUT_FILE_0=/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios/ReactNativeConfig/BuildDotenvConfig.ruby
    export SCRIPT_INPUT_FILE_COUNT=1
    export SCRIPT_OUTPUT_FILE_COUNT=0
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk
    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk
    export SDK_DIR_iphonesimulator10_3=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk
    export SDK_NAME=iphonesimulator10.3
    export SDK_NAMES=iphonesimulator10.3
    export SDK_PRODUCT_BUILD_VERSION=14E8301
    export SDK_VERSION=10.3
    export SDK_VERSION_ACTUAL=100300
    export SDK_VERSION_MAJOR=100000
    export SDK_VERSION_MINOR=300
    export SED=/usr/bin/sed
    export SEPARATE_STRIP=YES
    export SEPARATE_SYMBOL_EDIT=NO
    export SET_DIR_MODE_OWNER_GROUP=YES
    export SET_FILE_MODE_OWNER_GROUP=NO
    export SHALLOW_BUNDLE=NO
    export SHARED_DERIVED_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/DerivedSources
    export SHARED_PRECOMPS_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/PrecompiledHeaders
    export SKIP_INSTALL=YES
    export SOURCE_ROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export SRCROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export STRINGS_FILE_OUTPUT_ENCODING=binary
    export STRIP_BITCODE_FROM_COPIED_FILES=NO
    export STRIP_INSTALLED_PRODUCT=YES
    export STRIP_STYLE=debugging
    export SUPPORTED_DEVICE_FAMILIES=1,2
    export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
    export SUPPORTS_TEXT_BASED_API=NO
    export SWIFT_PLATFORM_TARGET_PREFIX=ios
    export SYMROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products
    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
    export SYSTEM_APPS_DIR=/Applications
    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Referen
ce Library/releasenotes/DeveloperTools"
    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR=/System/Library
    export TAPI_VERIFY_MODE=ErrorsOnly
    export TARGETED_DEVICE_FAMILY=1
    export TARGETNAME=ReactNativeConfig
    export TARGET_BUILD_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator
    export TARGET_DEVICE_IDENTIFIER=1271379F-18C0-4F77-B348-9205CA0834BA
    export TARGET_DEVICE_MODEL=iPhone7,2
    export TARGET_DEVICE_OS_VERSION=10.3.1
    export TARGET_NAME=ReactNativeConfig
    export TARGET_TEMP_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build
    export TEMP_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build
    export TEMP_FILES_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build
    export TEMP_FILE_DIR=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build
    export TEMP_ROOT=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates
    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
    export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
    export UID=501
    export UNSTRIPPED_PRODUCT=NO
    export USER=user
    export USER_APPS_DIR=/Users/user/Applications
    export USER_LIBRARY_DIR=/Users/user/Library
    export USE_DYNAMIC_NO_PIC=YES
    export USE_HEADERMAP=YES
    export USE_HEADER_SYMLINKS=NO
    export VALIDATE_PRODUCT=NO
    export VALID_ARCHS="i386 x86_64"
    export VERBOSE_PBXCP=NO
    export VERSION_INFO_BUILDER=user
    export VERSION_INFO_FILE=ReactNativeConfig_vers.c
    export VERSION_INFO_STRING="\"@(#)PROGRAM:ReactNativeConfig  PROJECT:ReactNativeConfig-\""
    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION=8E3004b
    export XCODE_VERSION_ACTUAL=0833
    export XCODE_VERSION_MAJOR=0800
    export XCODE_VERSION_MINOR=0830
    export XPCSERVICES_FOLDER_PATH=/XPCServices
    export YACC=yacc
    export arch=x86_64
    export variant=normal
    /bin/sh -c /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Script-EBE4E8281C7BF689000F8875.sh

Reading env from .env

Wrote to /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/GeneratedInfoPlistDotEnv.h



CompileC /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.o ReactNativeConfig/ReactNativeConfig.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export LANG=en_US.US-ASCII
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -fmodules-cache-path=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.2 -g -Wno-sign-conversion -Wno-infinite-recursion -fobjc-abi-version=2 -fobjc-legacy-dispatch -iquote /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ReactNativeConfig-generated-files.hmap -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ReactNativeConfig-own-target-headers.hmap -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ReactNativeConfig-all-target-headers.hmap -iquote /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/ReactNativeConfig-project-headers.hmap -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/include -I../../react-native/React -I../../react-native/React/Base -I../../react-native/React/CxxBridge -I../../react-native/React/CxxModule -I../../react-native/React/CxxUtils -I../../react-native/React/DevSupport -I../../react-native/React/Executors -I../../react-native/React/Modules -I../../react-native/React/Profiler -I../../react-native/React/Views -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/DerivedSources/x86_64 -I/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/DerivedSources -F/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator -MMD -MT dependencies -MF /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.d --serialize-diagnostics /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.dia -c /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios/ReactNativeConfig/ReactNativeConfig.m -o /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.o



Libtool /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libReactNativeConfig.a normal x86_64
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/react-native-config/ios
    export IPHONEOS_DEPLOYMENT_TARGET=9.2
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk -L/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator -filelist /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/ReactNativeConfig.build/Debug-iphonesimulator/ReactNativeConfig.build/Objects-normal/x86_64/ReactNativeConfig.LinkFileList -o /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libReactNativeConfig.a



=== BUILD TARGET RCTImage OF PROJECT RCTImage WITH CONFIGURATION Debug ===



Check dependencies



=== BUILD TARGET RCTText OF PROJECT RCTText WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTSettings OF PROJECT RCTSettings WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTAnimation OF PROJECT RCTAnimation WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTVibration OF PROJECT RCTVibration WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RCTActionSheet OF PROJECT RCTActionSheet WITH CONFIGURATION Debug ===


Check dependencies



=== BUILD TARGET RNTestProject OF PROJECT RNTestProject WITH CONFIGURATION Debug ===


Check dependencies



Ld build/Build/Products/Debug-iphonesimulator/RNTestProject.app/RNTestProject normal x86_64
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export IPHONEOS_DEPLOYMENT_TARGET=8.0
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk -L/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator -F/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator -filelist /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/RNTestProject.build/Debug-iphonesimulator/RNTestProject.build/Objects-normal/x86_64/RNTestProject.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/RNTestProject.build/Debug-iphonesimulator/RNTestProject.build/Objects-normal/x86_64/RNTestProject_lto.o -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lc++ -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/RNTestProject.build/Debug-iphonesimulator/RNTestProject.build/RNTestProject.app.xcent /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRNI18n.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libReact.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTAnimation.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTActionSheet.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTGeolocation.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTImage.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTLinking.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTNetwork.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTSettings.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTText.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTVibration.a /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libRCTWebSocket.a -lReactNativeConfig -lReactNativeNavigation -lReact -lyoga -lcxxreact -ljschelpers -Xlinker -dependency_info -Xlinker /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Intermediates/RNTestProject.build/Debug-iphonesimulator/RNTestProject.build/Objects-normal/x86_64/RNTestProject_dependency_info.dat -o /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app/RNTestProject

ld: warning: object file (/Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/libReactNativeConfig.a(ReactNativeConfig.o)) was built for newer iOS version (9.2) than being linked (8.0)



CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial\ Black.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Arial\ Black.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial\ Black.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app

error: /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial Black.ttf: No such file or directory



CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Andale\ Mono.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Andale\ Mono.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Andale\ Mono.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app
error: /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Andale Mono.ttf: No such file or directory

CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Arial.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app

error: /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Arial.ttf: No such file or directory



CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Comic\ Sans\ MS.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Comic\ Sans\ MS.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Comic\ Sans\ MS.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app

error: /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Comic Sans MS.ttf: No such file or directory


CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Courier\ New.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Courier\ New.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Courier\ New.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app
error: /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Courier New.ttf: No such file or directory


CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/FontAwesome.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/FontAwesome.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/FontAwesome.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app


CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Georgia.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Georgia.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Georgia.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app

CpResource /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Foundation.ttf build/Build/Products/Debug-iphonesimulator/RNTestProject.app/Foundation.ttf
    cd /Users/user/Development/test/reactnative-typescript-boilerplates/ios
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/.bin:/Users/user/.config/yarn/link/node_modules/.bin:/usr/local/Cellar/node/8.1.1/bin:/usr/local/Cellar/node/8.1.1/lib/node_modules/npm/bin/node-gyp-bin:/usr/local/Cellar/node/8.1.1/bin/node_modules/npm/bin/node-gyp-bin:/Library/Frameworks/Python.framework/Versions/3.4/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/user/Development/test/reactnative-typescript-boilerplates/node_modules/native-base/Fonts/Foundation.ttf /Users/user/Development/test/reactnative-typescript-boilerplates/ios/build/Build/Products/Debug-iphonesimulator/RNTestProject.app


Installing build/Build/Products/Debug-iphonesimulator/RNTestProject.app

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.