Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'config.h' file not found #19529

Closed
4 of 5 tasks
LionBuer opened this issue Jun 1, 2018 · 35 comments
Closed
4 of 5 tasks

'config.h' file not found #19529

LionBuer opened this issue Jun 1, 2018 · 35 comments
Labels
Ran Commands One of our bots successfully processed a command. Resolution: For Stack Overflow A question for Stack Overflow. Applying this label will cause issue to be closed. Resolution: Locked This issue was locked by the bot.

Comments

@LionBuer
Copy link

LionBuer commented Jun 1, 2018

Environment

Environment:
OS: macOS High Sierra 10.13.3
Node: 8.6.0
Yarn: 1.2.1
npm: 5.6.0
Watchman: 4.9.0
Xcode: Xcode 9.2 Build version 9C40b
Android Studio: 3.1 AI-173.4720617

Packages: (wanted => installed)
react: 16.3.1 => 16.3.1
react-native: 0.55.4 => 0.55.4

Description

when i adding a single view to existing native applications, it works ok.
But an error occurred when I tried to package my app.

Steps to Reproduce

Successfully integrated into existing applications
package
error

Expected Behavior

package success

Actual Behavior

......./ios/Pods/glog/src/base/mutex.h:105:10: fatal error:

  'config.h' file not found
@LionBuer
Copy link
Author

LionBuer commented Jun 1, 2018

emmmmm????

@hramos hramos added the Resolution: For Stack Overflow A question for Stack Overflow. Applying this label will cause issue to be closed. label Jun 1, 2018
@react-native-bot react-native-bot added the Ran Commands One of our bots successfully processed a command. label Jun 2, 2018
@react-native-bot
Copy link
Collaborator

Please use Stack Overflow for this type of question.

@TrustDec
Copy link

TrustDec commented Jun 28, 2018

@LionBuer Please see #14382

@stepheljobs
Copy link

Fix my bug.

rm -rf node_modules/ && yarn cache clean && yarn install
node_modules/react-native/scripts/ios-install-third-party.sh

@ManAnRuck
Copy link

ManAnRuck commented Sep 24, 2018

I need a little bit more, but then it works for me too :)

rm -rf node_modules/ && yarn cache clean && yarn install
node_modules/react-native/scripts/ios-install-third-party.sh
cd node_modules/react-native/third-party/glog-0.3.4
./configure

(replace glog-0.3.X with yours)

bildschirmfoto 2018-09-24 um 09 47 51

replace with `NULL`

bildschirmfoto 2018-09-24 um 09 48 06

bildschirmfoto 2018-09-24 um 09 50 59

Remove library libfishhook.a and add again
bildschirmfoto 2018-09-24 um 09 52 00
bildschirmfoto 2018-09-24 um 09 52 13

@fbartho
Copy link
Contributor

fbartho commented Sep 24, 2018

@ReggaePanda I did indeed have to run that /configure script but I had to run it within the glog directory, aka cd node_modules/react-native/third-party/glog-0.3.4/; ./configure

@ManAnRuck
Copy link

ManAnRuck commented Sep 25, 2018

I edited it in the script above. @fbartho :)

@sospedra
Copy link

I had an error pointing to a missing ./config file. Because the ios-install-third-party.sh uses relative paths.

Here's my solution: cd ./node_modules/react-native/scripts/third-party/glog-0.3.4 && ../../scripts/ios-install-third-party.sh && cd ../../../../

Note the glog-0.3.4 version may change depending on your react-native version.

@renatobenks-zz
Copy link

renatobenks-zz commented Sep 27, 2018

thank you @ReggaePanda, it works, you helped me a lot!

@dahveed-rb
Copy link

@ReggaePanda YOU'RE THE MAN. After spending a 10 hours trying to figure this out, your process finally worked. Can't thank you enough!

@HansBouwmeester
Copy link

Same here. @ReggaePanda, thanks very much for sharing!

@lgandecki
Copy link

I'm always amazed - how do you guys figure out cryptic errors like those? Especially when it is what feels like an endless chain of fix/new error story..

Thanks for the fix @ReggaePanda .

@kaitlynbrown
Copy link

Why are none of these steps listed on the guide here?
https://facebook.github.io/react-native/docs/running-on-device

@nolindnaidoo
Copy link

nolindnaidoo commented Oct 5, 2018

I wrote something a bit cleaner for my purposes and installed the fix within the node_modules/react-native package. Normally I would prefer not to modify a node_module directly, but under this circumsance I felt that it was worth it and allowed us to add a simple script in our yarn start script and we get a clean run from a fresh clone in multiple products.

"react-native-vector-icons": "4.5.0" this script can be useful for a bug relating to this package.
rm ./node_modules/react-native/local-cli/core/__fixtures__/files/package.json

glog-0.3.4

Xcode 9.2: "react": "15.4.1" / "react-native": "0.38.1"
Xcode 9.4.1: "react": "16.0.0-alpha.12" / "react-native": "0.53.0"

cd node_modules/react-native && scripts/ios-install-third-party.sh && cd third-party && cd glog-0.3.4 && ./configure && cd ../../../../

glog-0.3.5

Xcode 9.4.1: react": "16.5.0" / "react-native": "0.57.1" / "metro-react-native-babel-preset": "0.47.0"
Xcode 10: react": "16.5.0" / "react-native": "0.57.1" / "metro-react-native-babel-preset": "0.47.0"

cd node_modules/react-native && scripts/ios-install-third-party.sh && cd third-party && cd glog-0.3.5 && ./configure && cd ../../../../

manual
npm install or yarn - install packages
cd node_modules/react-native - go to node modules directory
scripts/ios-install-third-party.sh- install @ node_modules/react-native/third-party
cd third-party - go to newly created third party directory
cd glog-0.3.x - ls -la to find your directory version number or just use tab to auto-complete
./configure - run setup
cd ../../../../- change back to your project directory
react-native run-ios or react-native run-android - deploy

@uamanager
Copy link

For any glog

cd ./node_modules/react-native && scripts/ios-install-third-party.sh && cd third-party && cd $(ls | grep 'glog' | awk '{print $1}') && ./configure

@alqamabinsadiq
Copy link

This worked for me:

rm -rf node_modules/ && yarn cache clean && yarn install
node_modules/react-native/scripts/ios-install-third-party.sh
cd node_modules/react-native/third-party/glog-0.3.4
./configure

@cinder92
Copy link

im receiving the following error with Xcode 10 and RN 0.48

configure: WARNING: 'missing' script is too old or missing
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... configure: error: in `/Users/dantecervantes/documents/eradio-estaciones-react-native/node_modules/react-native/third-party/glog-0.3.4':
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.

config.log

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by glog configure 0.3.4, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = MacBook-Air-de-Dante.local
uname -m = x86_64
uname -r = 18.0.0
uname -s = Darwin
uname -v = Darwin Kernel Version 18.0.0: Wed Aug 22 20:13:40 PDT 2018; root:xnu-4903.201.2~1/RELEASE_X86_64

/usr/bin/uname -p = i386
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = Mach kernel version:
	 Darwin Kernel Version 18.0.0: Wed Aug 22 20:13:40 PDT 2018; root:xnu-4903.201.2~1/RELEASE_X86_64
Kernel configured for up to 4 processors.
2 processors are physically available.
4 processors are logically available.
Processor type: x86_64h (Intel x86-64h Haswell)
Processors active: 0 1 2 3
Primary memory available: 8.00 gigabytes
Default processor set: 365 tasks, 1663 threads, 4 processors
Load average: 2.46, Mach factor: 1.80
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /Users/dantecervantes/Downloads/flutter/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/sbin
PATH: /sbin
PATH: /Applications/Postgres.app/Contents/Versions/latest/bin
PATH: /Users/dantecervantes/Library/Android/sdk/
PATH: /Users/dantecervantes/Library/Android/sdk//tools
PATH: /Users/dantecervantes/Library/Android/sdk//platform-tools


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2788: checking for a BSD-compatible install
configure:2856: result: /usr/bin/install -c
configure:2867: checking whether build environment is sane
configure:2922: result: yes
configure:2960: WARNING: 'missing' script is too old or missing
configure:3073: checking for a thread-safe mkdir -p
configure:3112: result: ./install-sh -c -d
configure:3119: checking for gawk
configure:3149: result: no
configure:3119: checking for mawk
configure:3149: result: no
configure:3119: checking for nawk
configure:3149: result: no
configure:3119: checking for awk
configure:3135: found /usr/bin/awk
configure:3146: result: awk
configure:3157: checking whether make sets $(MAKE)
configure:3179: result: yes
configure:3208: checking whether make supports nested variables
configure:3225: result: yes
configure:3409: checking for gcc
configure:3425: found /usr/bin/gcc
configure:3436: result: gcc
configure:3665: checking for C compiler version
configure:3674: gcc --version >&5
Apple LLVM version 10.0.0 (clang-1000.11.45.2)
Target: x86_64-apple-darwin18.0.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/c++/4.2.1
configure:3685: $? = 0
configure:3674: gcc -v >&5
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.11.45.2)
Target: x86_64-apple-darwin18.0.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
configure:3685: $? = 0
configure:3674: gcc -V >&5
clang: error: argument to '-V' is missing (expected 1 value)
clang: error: no input files
configure:3685: $? = 1
configure:3674: gcc -qversion >&5
clang: error: unknown argument: '-qversion'
clang: error: no input files
configure:3685: $? = 1
configure:3705: checking whether the C compiler works
configure:3727: gcc    conftest.c  >&5
configure:3731: $? = 0
configure:3779: result: yes
configure:3782: checking for C compiler default output file name
configure:3784: result: a.out
configure:3790: checking for suffix of executables
configure:3797: gcc -o conftest    conftest.c  >&5
configure:3801: $? = 0
configure:3823: result: 
configure:3845: checking whether we are cross compiling
configure:3853: gcc -o conftest    conftest.c  >&5
configure:3857: $? = 0
configure:3864: ./conftest
dyld: mach-o, but built for simulator (not macOS)
./configure: line 3866: 12273 Abort trap: 6           ./conftest$ac_cv_exeext
configure:3868: $? = 134
configure:3875: error: in `/Users/dantecervantes/documents/eradio-estaciones-react-native/node_modules/react-native/third-party/glog-0.3.4':
configure:3877: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.
See `config.log' for more details

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=awk
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_make_make_set=yes
am_cv_make_support_nested_variables=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='aclocal-1.14'
AMDEPBACKSLASH=''
AMDEP_FALSE=''
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR=''
AUTOCONF='autoconf'
AUTOHEADER='autoheader'
AUTOMAKE='automake-1.14'
AWK='awk'
CC='gcc'
CCDEPMODE=''
CFLAGS=''
CPP=''
CPPFLAGS=''
CXX=''
CXXCPP=''
CXXDEPMODE=''
CXXFLAGS=''
CYGPATH_W='echo'
DEFS=''
DEPDIR=''
DISABLE_RTTI_FALSE=''
DISABLE_RTTI_TRUE=''
DLLTOOL=''
DSYMUTIL=''
DUMPBIN=''
ECHO_C='\c'
ECHO_N=''
ECHO_T=''
EGREP=''
ENABLE_FRAME_POINTERS_FALSE=''
ENABLE_FRAME_POINTERS_TRUE=''
EXEEXT=''
FGREP=''
GCC_FALSE=''
GCC_TRUE=''
GFLAGS_CFLAGS=''
GFLAGS_LIBS=''
GMOCK_CFLAGS=''
GMOCK_CONFIG=''
GMOCK_LIBS=''
GREP=''
GTEST_CFLAGS=''
GTEST_CONFIG=''
GTEST_LIBS=''
HAVE_GMOCK_FALSE=''
HAVE_GMOCK_TRUE=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD=''
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL=''
LIBTOOL_DEPS=''
LIPO=''
LN_S=''
LTLIBOBJS=''
MAKEINFO='makeinfo'
MANIFEST_TOOL=''
MINGW_CFLAGS=''
MKDIR_P='./install-sh -c -d'
NM=''
NMEDIT=''
OBJDUMP=''
OBJEXT=''
OTOOL64=''
OTOOL=''
PACKAGE='glog'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_NAME='glog'
PACKAGE_STRING='glog 0.3.4'
PACKAGE_TARNAME='glog'
PACKAGE_URL=''
PACKAGE_VERSION='0.3.4'
PATH_SEPARATOR=':'
PTHREAD_CC=''
PTHREAD_CFLAGS=''
PTHREAD_LIBS=''
RANLIB=''
SED='/usr/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
STRIP=''
UNWIND_LIBS=''
VERSION='0.3.4'
X86_64_FALSE=''
X86_64_TRUE=''
ac_ct_AR=''
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_DUMPBIN=''
ac_cv___attribute___noinline=''
ac_cv___attribute___noreturn=''
ac_cv___attribute___printf_4_5=''
ac_cv_cxx_using_operator=''
ac_cv_have___builtin_expect=''
ac_cv_have___uint16=''
ac_cv_have_inttypes_h=''
ac_cv_have_libgflags=''
ac_cv_have_stdint_h=''
ac_cv_have_systypes_h=''
ac_cv_have_u_int16_t=''
ac_cv_have_uint16_t=''
ac_cv_have_unistd_h=''
ac_google_end_namespace=''
ac_google_namespace=''
ac_google_start_namespace=''
acx_pthread_config=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE=''
am__include=''
am__isrc=''
am__leading_dot='.'
am__nodep=''
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build=''
build_alias=''
build_cpu=''
build_os=''
build_vendor=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host=''
host_alias=''
host_cpu=''
host_os=''
host_vendor=''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /Users/dantecervantes/documents/eradio-estaciones-react-native/node_modules/react-native/third-party/glog-0.3.4/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='NONE'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "glog"
#define PACKAGE_TARNAME "glog"
#define PACKAGE_VERSION "0.3.4"
#define PACKAGE_STRING "glog 0.3.4"
#define PACKAGE_BUGREPORT "[email protected]"
#define PACKAGE_URL ""
#define PACKAGE "glog"
#define VERSION "0.3.4"

configure: exit 1

any idea?

@MinhajJaved
Copy link

You need to change to the legacy build system in Xcode 10 and install third party scripts manually.

1:

File -> Project/Workspace settings
Build System: dropdown -> change to Legacy Build system

2: Follow this to manually install third party scripts for RN:

Clean RN cache

$ rm -rf ~/.rncache

Re-install the deps

$ cd your_project_path
$ rm -rf node_modules/ && npm install

Then install the third-party

$ cd node_modules/react-native/scripts
$ ./ios-install-third-party.sh

Run the commands below if glog installation failed.

$ cd ../third-party/glog-0.3.x
$ ./configure

It works for me, I hope it helps for you.

@albertoclarit
Copy link

You need to change to the legacy build system in Xcode 10 and install third party scripts manually.

1:

File -> Project/Workspace settings
Build System: dropdown -> change to Legacy Build system

2: Follow this to manually install third party scripts for RN:

Clean RN cache

$ rm -rf ~/.rncache

Re-install the deps

$ cd your_project_path
$ rm -rf node_modules/ && npm install

Then install the third-party

$ cd node_modules/react-native/scripts
$ ./ios-install-third-party.sh

Run the commands below if glog installation failed.

$ cd ../third-party/glog-0.3.x
$ ./configure

It works for me, I hope it helps for you.

This instructions works as long as theres no space in project's path...

@m4v0
Copy link

m4v0 commented Nov 29, 2018

I followed the pastures of @MinhajJaved ... however after executing the command "./ios-install-third-party.sh", I moved the "third-party" directory to a level below that is in the folder "node_modules / react-native "and I ran the next command" cd ../third-party/glog-0.3.xe ./configure "... it worked perfectly ...

Why did I do this? because the command "ios-install-third-party.sh" installs the "third-party" package in the "node_modules / react-native / scripts" folder and not at a level below that would be "node_modules / react-native ".

This for react-native 0.57.7

tks @MinhajJaved

@HarshalValanda
Copy link

i just remove spacing from project parent folder name

Working On to Working-On

Close Xcode --> Clean --> Run

@imrohan22
Copy link

imrohan22 commented Dec 19, 2018

If above all answers don't work, Please check that there is no space in any directory name of the full path and not only the project directory name.

While in terminal, it accepts through My Disk as My\ Disk but xcode do not recognize that.

If its in My Disk directory, try after moving it to Desktop or any other directory which doesn't have space in their name.
e.g. image
screen shot 2018-12-19 at 6 10 14 pm

@HarshalValanda
Copy link

HarshalValanda commented Dec 19, 2018 via email

@AlexM2807
Copy link

Thanks @NNaidoo it's work

@HarshalValanda
Copy link

HarshalValanda commented Dec 23, 2018 via email

@gurmundi7
Copy link

@ReggaePanda I did indeed have to run that /configure script but I had to run it within the glog directory, aka cd node_modules/react-native/third-party/glog-0.3.4/; ./configure

This answer works just fine. Thanks

@jiawenbin2013
Copy link

@ReggaePanda

Can't thank you enough!

@aleclarson
Copy link
Contributor

Reinstalling react-native should be enough, as glog is configured automatically during the first Xcode build.

@Lohins
Copy link

Lohins commented Mar 27, 2019

I have a similar issue. When I used the Default Build System, I got an error about double-conversion related to glog-0.3.5. Then I changed it to Legacy Build System. The error is gone.
But I still had an error about third-party. Then I ran the following commands. Working

node_modules/react-native/scripts/ios-install-third-party.sh
cd node_modules/react-native/third-party/glog-0.3.4
./configure

@neoswallow
Copy link

I had this issue when I installed Xcode 10.2 and installed Xcode 10.1 in ~/Applications/ folder and opened Xcode project file with 10.1.
The root cause of the problem was that RN created/installed third-party directory at the root directory of the repo rather than under node-modules/react-native.
By removing Xcode 10.2 and put back Xcode 10.1 in /Applications folder resolved the issue.
Our project is running RN 0.54.4.
I am not sure why the location of Xcode matters but it should be fixed as many would do this to either test new version of Xcode or keep older version for compatibility issue.

@thunderctf
Copy link

@ReggaePanda I did indeed have to run that /configure script but I had to run it within the glog directory, aka cd node_modules/react-native/third-party/glog-0.3.4/; ./configure

Thanks it work for me

@jamesawer3
Copy link

still i have the same issue,

config.log

@hite
Copy link

hite commented Apr 24, 2019

Fix my bug.

rm -rf node_modules/ && yarn cache clean && yarn install
node_modules/react-native/scripts/ios-install-third-party.sh

Don't work for [email protected]

@someOneJYB
Copy link

when i run ./configure always error so it run
rm -r ~/.rncache/
cd node_modules/react-native/third-party/glog-0.3.4/
./configure --host arm-apple-darwin
maybe helpful

@TRIPTI-JAIN
Copy link

In the Terminal, navigate to the react-native/third-party/glog folder inside node_modules (for me, this was cd node_modules/react-native/third-party/glog-0.3.4)
Once actively in this folder, run ../../scripts/ios-configure-glog.sh
Glog is configured and the required config.h header file is created for Xcode to find

@facebook facebook locked as resolved and limited conversation to collaborators Jun 2, 2019
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Jun 2, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Ran Commands One of our bots successfully processed a command. Resolution: For Stack Overflow A question for Stack Overflow. Applying this label will cause issue to be closed. Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests