Why expo is showing Loading DevTools Error - react-native

My react native app is showing error when using expo-cli:
Error loading DevTools
,No scheme specified for development client
picture:
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?

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/

Related

React Native map crashes only with apk but not in local

when use google map my apk crash but in local run correctly in react native expo. in apk when go to screen apk crash
What is actul issue and how can resolve that issue
You should check the native log of your release build with:
npx react-native log-android
We can't know the issue with these informations only.

Expo Branch: undefined is not an object (evaluating 'RNBranch.STANDARD EVENT ADD_TO_CART')

I am using expo for my react native application.
Steps:
- run expo start
Hit the error below on android studio emulator.
Working fine on real android device and IOS simulator.
UPDATE:
I have solved the issue. The issue was with my android studio. I open the app using the genymotion emulator and it was working
Unfortunately, Branch does not officially have a wrapper SDK for Expo and the link you referenced is built by a third-party which we cannot help troubleshoot.
Can you try ejecting your build from Expo and use native packages and linking in React Native, by following this: https://docs.branch.io/apps/react-native/#integrate-branch

How to import existing project in expo?

I have a project which developed in react native using expo tool. Now I am trying to import project in expo but facing below error,
F:\ProjectPath>expo start
Starting project at F:\ProjectPath
Expo DevTools is running at http://localhost:19002
Error: Missing app.json. See https://docs.expo.io/
No Expo configuration found. Are you sure this is a project directory?

Including react-native-maps package in the project is making the app crash

Running react native app on the android simulator.
Installed react-native-maps module and build again. The app stopped working.
Build successful but the app crashes as soon as I open it without any error or exception.
google-services version 4.0.1
React native - latest
I tried adding disablestrictVersioncheck to true in the build.gradle file. Did not help.

Can we user razorpay plugin with reactnative and expo

In plugin they mentioned that the razorpay is not going to work with expo. i want to acces razorpay plugin in my react native app. is there any way..? i am using expo. please help me
if the react native library you want requires a linking step, then you can detach and use ExpoKit directly.
https://docs.expo.io/versions/latest/guides/detach.html
EAS builds officially released in Expo SDK 42 makes it possible to run native modules on expo projects.
In order to make sure Razorpay wrapper works correctly:
Create a dev build of your expo app by following the instructions mentioned here.
run your project by running the following command
For ios
expo run:ios
For android
expo run:android