5

While trying to eject a project from expokit, it won't finish and get's stuck at config syncing for over an hour.

enter image description here

This also happens when I create a new project with expo and then run expo run:android

Jasper B
  • 346
  • 3
  • 17
dukizwe
  • 160
  • 3
  • 9

2 Answers2

3

Perhaps your copy of sharp-cli is corrupted?

npm uninstall -g sharp-cli && npm install -g sharp-cli

If the problem persists you can just uninstall sharp-cli and it will skip this step.

TOOL
  • 70
  • 1
  • 10
3

I solved below step.


remove files for new feeling.

rm -rf android
rm -rf node_modules
rm yarn.lock
rm package-lock.json

update node. I used nvm.


npm uninstall -g sharp-cli

yarn install

guhyeon
  • 566
  • 6
  • 8