Moein Moeinnia
Moein Moeinnia

Reputation: 2341

Why expo is showing Loading DevTools Error

My react native app is showing error when using expo-cli:

Error loading DevTools ,No scheme specified for development client

picture:

enter image description here

I am using expo version 44 And react-native version 0.64 ,also I have used expo init in order to create my project.

How can I fix this error?

Upvotes: 0

Views: 201

Answers (1)

Iron Man
Iron Man

Reputation: 26

You'll have to run:

expo install expo-dev-client

Then, for Android:

expo run:android

or for IOS:

expo run:ios

Since config plugins will let you customize your project from JavaScript without ever needing to directly modify XCode or Android Studio projects.

More details here https://docs.expo.dev/development/getting-started/

Upvotes: 1

Related Questions