Questions tagged [create-react-native-app]
194 questions
2
votes
1 answer
Created standalone app with CRNA, why APK sizes differ?
I tried two ways to compose a standalone Android app from CRNA project:
Use the Expo "exp build" command (this guide)
Eject and build an APK manually (this guide)
Both ways work well and yield the working APKs, but the first one is of 26MB size…

Pavlo Kyrylenko
- 2,355
- 2
- 21
- 21
2
votes
1 answer
Using @babel/plugin-proposal-nullish-coalescing-operator with "babel-preset-expo"
The project was created with create-react-native-app.
When I use code like const a = 2 ?? 3, there will be an error complaining "Cannot read property 'loose' of undefined".
I tried adding the @babel/plugin-proposal-nullish-coalescing-operator…

LShi
- 1,500
- 16
- 29
2
votes
2 answers
React Native UnableToResolveError
I've been doing React for ~2 years, I've started learning React Native a few days ago and immediately ran into a wall.
I'm trying to import a simple .jsx file into my App.js:
import PostsPage from './pages/PostsPage/PostsPageContainer.jsx';
Here's…

user2634633
- 509
- 8
- 21
2
votes
3 answers
How to use expo kit in react native init?
I have used create react native app tool to create initial setup of the my app. With CRNA i used Expokit also. After ejecting CRNA into react-native init setup i couldn't use expo camera features. I'm getting below error while launching app in…

Sathya
- 1,704
- 3
- 36
- 58
2
votes
0 answers
Where does react native store assets?
Hi I am developing a react native android app, and I noticed that video assets only work when the device is connected to the internet. That leads me to the question: where does react native store video assets?
To add clarity: I'm using the require…

narahan
- 381
- 1
- 3
- 9
2
votes
0 answers
Video playlist issue (when one video ends, the next video plays beginning from the length of previous vid) Expo/React Native
I am trying to create a playlist component, which has a this.state.playlist consisting of multiple mp4 video files, and the source of the Video tag is this.state.playlist[0]. Ideally when one video finishes, this.state.playlist shifts the first…

narahan
- 381
- 1
- 3
- 9
2
votes
1 answer
What does "ejecting CRNA app is not reversible" really mean?
I've read some docs that says that ejecting a Create React Native App (CRNA) is irreversible. Im not sure what this means exactly.
Will I not be able to build my apps again for App Store, Play Store? Is it just a 1-time feature?
Will I lose files/…

rodiwa
- 1,690
- 2
- 17
- 35
2
votes
1 answer
Submit an app created with create-react-native-app to the App Store (without XCode?)
Before, react-native 0.45, when you'd create a project, it would generate a XCode project file in the ios folder so that you can open it with XCode and use it to submit your app to the app store.
Since react-native 0.45, react native project are…

Ryan Pergent
- 4,432
- 3
- 36
- 78
2
votes
3 answers
How to use react-navigation with create-react-native-app (CRNA) for Android build
I have started experimenting with react-native and in particular with the latest approach with create-react-native-app script. Everything seems to be working flawlessly out of the box but when I am trying to use react-navigation for navigation of my…

topless
- 8,069
- 11
- 57
- 86
1
vote
0 answers
android sdk version not found in react-native-community/cli doctor
I ran npx @react-native-community/cli doctor, and I encountered the following error:
capture of doctor log
I'm seeing an error related to the Android SDK, where it is looking for a version called .b33.0.0, but I couldn't find any information about…

booboo4055
- 11
- 1
1
vote
0 answers
Not able to setup react native project with rn-cli. Error - 'project_name\node_modules\react-native-gradle-plugin' does not exist
I am trying to setup my first react native project with react native cli, I have used react-native-document but getting below error.
Log -
`info Tip: Make sure that you have set up your development environment correctly, by running react-native…

Shubham
- 31
- 2
1
vote
1 answer
React Native Error create new project ' Copying template '
when I'm try create new react native project
on macos Ventura 13.2
✔ Downloading template
✖ Copying template
error Error: Couldn't find the…

Rabi3 Fegga
- 31
- 6
1
vote
0 answers
Expo/react-native what are the databases that can be integrated together in crossplatform apps
i have tested watermelon db it didnt worked well gave too many errors,
tested pouch had some problem with adapter settings
also tested realm and it also gave alot of bugs,
trying to use sqlite but now before testing something new , just want to ask…

proaxius
- 11
- 3
1
vote
2 answers
How to setup React-Native with Yarn and Typescript
So up until now I have been working on my project using barebone react-native and npm and its was going okay but now I face a problem
I need to add a new feature at the later stages which would be a headache and therefore I decided to restart the…

KidCoder
- 164
- 3
- 12
1
vote
0 answers
Not getting a qr code for newly create Create React Native App
I'm using Create-React-Native-App for the first time (I've used React before). I'm following instructions on a course on Coursera on how to setup and start a Create-React-Native-App application. The instructions are as follows:
At a convenient…

Andrex
- 229
- 2
- 16