Error building a project in React-Native

0

Good night, I'm having the following error when building with react-native.

I'm using windows 7, I generated the project using react-native init dacerto --version 0.55.4

Then I went into the project folder and rode react-native run-android. And I can not run it. I'm building it right on my mobile because android studio is very heavy and I've done a similar project and it worked. Can anyone help me, please?

    
asked by anonymous 03.09.2018 / 04:05

1 answer

0

I took a chance on your question and there is a similar question of it in StackOverflow in English. This is the link .

In short, translating, the PATH of your project at the time of running certain tasks, were too big for processing.

Ex:

  • C: \ Asdasdasd \ asdasdasd \ asdasdasd \ asdasdassdz \ < Design > \ < Tons of Subfolders >

Try changing to something like:

  • C: \ Workspace \ < Project > or C: \ < Project >

This, according to community response , is resolving your problem.

    
11.09.2018 / 16:55