MoHammaD ReZa DehGhani
MoHammaD ReZa DehGhani

Reputation: 585

react native stuck in configuring react-native-gesture-handler

I did this:

  1. react-native init "project name"
  2. npm install react-navigation
  3. npm link
  4. react-native run-android

and boom !!!! it's stuck and did not run just like this :

See the PowerShell image

Please help me in this case ...

Upvotes: 3

Views: 1530

Answers (1)

Samitha Nanayakkara
Samitha Nanayakkara

Reputation: 2497

That's because you haven't installed Android SDK platform 25. I had the same issue and solved using below method.

  1. Open Android Studio
  2. Open SDK Manager
  3. Click SDK Platforms Tab
  4. Select android 7.1.1 (Nougat) API level is 25
  5. Apply

After installing that press OK and try again to build the project.

Upvotes: 4

Related Questions