181 questions
3
votes
1
answer
388
views
Expo Go on iOS Simulator doesn't request Local Network permission — can't enable it in Settings
I'm trying to run a React Native app using Expo in the iOS simulator (iPhone 16 Pro Max running iOS 18.4). I start the local dev server using:
npm start -- --reset-cache
Then I press i to open the app ...
0
votes
0
answers
53
views
I am unable to start my app in my android device through expo
I am starting with expo go and I am trying to use expo go in android to run the initial app.
After installation through the docs and npx expo start I did scan the qr code generated to start the app in ...
0
votes
0
answers
40
views
Expo Go dev menu making React Native app UI unresponsive
I have a Front end for a mobile app I am working on and I have implemented a basic Login/Signup screen for testing. However, after many hours debugging "why my app's UI is unresponsive on initial ...
1
vote
1
answer
50
views
"Expo Go isn't optimised for latest version of android. Screen touches may be delayed or not recognised"
When I try to exit from my expo go project from android by clicking "back" or "home" button, it display
"Expo Go isn't optimised for latest version of android. Screen touches ...
0
votes
0
answers
24
views
Specific webPage is stuck at loading in `react-native-webview` on physical device's Expo Go?
A specific web page is getting stuck on mobile device expo go yet it loads completely on simulator(BlueStacks)Expo Go.
webPage is SPA but the loading elements never disappear on physical device's expo ...
1
vote
1
answer
38
views
Cannot find native module 'Expo application'
I'm having a problem integrating
import * as Google from ‘expo-auth-session/providers/google’
in my native React project. I'm using Expo Go.
I get this error:
(NOBRIDGE) ERROR Error: Cannot find ...
0
votes
0
answers
18
views
Cannot get expo-audio (newer audio library) metering property at all
I am creating an Expo, react-native application that records your audio as an audio file.
I'm having problems getting the 'metering' property from the RecorderState, which is preventing my ...
0
votes
0
answers
16
views
React Native problems streaming video - how to prevent redundant streaming
I am trying to make a React Native App that will stream the video.
I have two problems:
The react native app aggressively streams/downloads the video
the component refreshes often and starts the ...
0
votes
1
answer
38
views
How to listen to user movement and count their distance in React Expo
I am relatively new to react expo and I am currently working on a personal project where I would like to:
a. Ask the user for permission to grant location access (ok).
b. When a button is clicked then ...
0
votes
0
answers
8
views
I am sending websocket message to both sessions on different android emulators but only one phone is receiving the object?
SPRINGBOOT BACKEND:
@Transactional
private void acceptPairingRequest(JSONObject jsonObject, WebSocketSession receiverSession) throws IOException, InterruptedException {
JSONObject finalPairing = ...
0
votes
0
answers
66
views
React native expo go problems
I am developing an application and started to build, and the documentation said to use eas, but this affected testing (expo go), namely, such a problem appeared that the application does not start ...
0
votes
0
answers
47
views
React Native Expo Go suddenly erroring out
I am learning React Native, and testing using Expo Go. I suddenly started getting this error, and can't figure out how to fix it. I run expo using this command:
npx expo start --tunnel
Error: /Users/...
2
votes
5
answers
7k
views
Uncaught Error: java.io.IOException: Failed to download remote update
When using the npx expo start --lan, it is not possible to log into the project either through QR or through exp://... . Through --tunnel, the project is launched, but with restrictions or some kind ...
0
votes
0
answers
26
views
pressables inputs and all touchable elements not working after animating transform properties of parent view in sdk52
i have custome modals, popups ...ui-elements , after updating my expo project to sdk52 the touch event are not firing and not behaving as expected in animated views , this is my modal code i cant get ...
2
votes
1
answer
38
views
Flatlist needing time before it can scroll
I have a Pressable, which "opens" up using an Animated View, and in this view I want to show a FlatList. I use this component in two files, club.tsx and PbTable.tsx. In PbTable.tsx this ...