Questions tagged [expo-go]

115 questions
17
votes
9 answers

Invariant Violation: requireNativeComponent: "RNSVGSvgViewAndroid" was not found in the UIManager

I am having a headache with the error mentioned in the title. I am using react-native-gifted-charts (https://www.npmjs.com/package/react-native-gifted-charts/v/1.0.3) The charts works perfectly in ios but in Android it keeps crushing and throwing…
peruvian66
  • 171
  • 1
  • 1
  • 3
9
votes
2 answers

Determine in code if app runs in Expo Go or not (in production build)

I would like to determine in react native code if the app is running in Expo Go or as a stand-alone iOS/Android app. I can’t use __DEV__, because I would like to be able to determine this also for a production build.
pors
  • 3,856
  • 36
  • 33
8
votes
4 answers

Incompatible SDK version or no SDK version Expo Go

Summary Message: "There was a problem running the requested app". "Incompatible SDK version or no SDK version specified. This version of Expo Go only Supports the following SDKS: 44.0.0, 45.0.0, 46.0.0." Running app with npx expo start on any device…
8
votes
3 answers

Incompatible react native SDK with expo SDK

When I run react native project using expo I got this error "This project uses SDK 38.0.0 but this version of Expo Go only supports the following SDKs: 43.00, 42.0.0, 41.0.0, 40.0.0. To load the project, it must be updated to a supported SDK version…
Menna Magdy
  • 355
  • 1
  • 2
  • 14
7
votes
5 answers

Expo Error on launching the app. "ApiV2Error: Account not found. "

Good day, I am using and expo version 5.4.12 I tried running my app I got an error on launch "ApiV2Error: Account not found.     at ApiV2Client._requestAsync" anyone who had this issue ? please help me.
mingmingming
  • 345
  • 2
  • 4
  • 12
5
votes
1 answer

Expo Cannot read property 'getConstants' of null, js engine: hermes

When running an Expo app, you may encounter the error message 'Cannot read property 'getConstants' of null, js engine: hermes'. I don't know the reason and I don't know where to fix it. ️Error Image: I upgraded the SDK from 46 to 48 (used the…
5
votes
3 answers

How to access expo-file-system Filesystem.documentDirectory

I am trying to do a data backup for my React Native App with expo go and expo-file-system await Filesystem.writeAsStringAsync( Filesystem.documentDirectory! + "GymTracker-Data.json", JSON.stringify(exportData) ) How do I access this…
Ryan
  • 356
  • 1
  • 6
  • 26
4
votes
0 answers

expo authentication google working on emulator perfectly but not working on expo go app on phone and on standalone app

On standalone app it showing You can't sign in to this app because it doesn't comply with Google's OAuth 2.0 policy for keeping apps secure this and nothing happening. But in emulator everything is working fine. my code import * as GoogleSignIn …
3
votes
1 answer

Impossible to update expo project inside Expo Go after switching to EAS Build

I have the need to run a project from Expo Go without being connected to PC. We are developing an app that require GPS and needs to be tested in open field. Before EAS became the standard to create projects i used expo build:android ad this created…
Steve
  • 37
  • 7
3
votes
1 answer

Channels other than default in Expo Go?

I have published my app using expo publish --release-channel channelxyz but the only channel I see in my (iOS) Expo Go app is default. How do I get channelxyz to appear in the Expo Go app?
orome
  • 45,163
  • 57
  • 202
  • 418
2
votes
0 answers

Issue with npx exp publish in Expo Go: 404 Error during Uploading Assets Phase

I've created a brand new Expo Go app and signed up with an Expo Go account, logged in using exp login. My App.json is below. { "expo": { "name": "SampleApp", "slug": "SampleApp", "version": "1.0.0", "sdkVersion": "49.0.0", …
Aby
  • 1,916
  • 1
  • 12
  • 18
2
votes
1 answer

Invariant Violation: requireNativeComponent: "RNSScreenNavigationContainer" was not found in the UIManager

When I run the React Native app using the Expo Go app on iOS, it runs without problems, but when I run it using the Expo Go app on Android, an error occurs. Invariant Violation: requireNativeComponent: "RNSScreenNavigationContainer" was not…
2
votes
1 answer

Expo Go with Google/Facebook OAuth - auth.expo.io login screen - "Not Found"

I am trying to set up google oauth in a react native, expo managed app. I am only having the following issue using my app within Expo Go - when I create a build of the app, the oauth flow works perfectly. But its hard to develop that way, and I…
Seth Lutske
  • 9,154
  • 5
  • 29
  • 78
2
votes
1 answer

AuthSession proxy error when trying to implement Expo AuthSession

I'm trying to get my expo AuthSession to work (sign up with google) in my react native app. I have been following this clip (https://www.youtube.com/watch?v=YX7IWOQIKA0) on youtube but get an error as soon as i try to navigate to the login…
2
votes
0 answers

Getting metadata from an audio stream in Expo Go

Who can tell me how to get metadata from the audio stream (icecast) in Expo Go? In documentation I see how to write my metadata, but how to get existing data I can't understand. I start the player with this code: import { Audio } from…
1
2 3 4 5 6 7 8