is it possible creating expo app with desired SDK version ?
jsx - How can I create an expo app with Javascript? - Stack Overflow
npx create-expo-app@latest
Using create react native app (Expo) with Microsofts App Center? Possible alternatives?
Unless your app is very basic you'll have to eject at some point. Not much can be done without some sort of native module.
That being said you can probably clone your folder where your project is. Eject, run the initial build app center needs then go back to your original unejected project but don't quote me on that. It would likely cause some problems if you need to eject for another reason later anyway.
Either way it's unavoidable at least once as xcode needs to generate the certs etc for app center to do your builds.
More on reddit.comVideos
» npm install create-expo
is there any way so that while creating app i can specify my desired SDK version so that the apps configurations and everything will also work according to that SDK version, i want to stop expo from creating app with sdk52 by default i don't how may errors it may cause when i start developing with it , since i'm comfortable with SDK 51 i want to work in that version and slowly take time before getting into SDK 52
I got it the correct command would be:
npx create-expo-app@latest --template
and select the blank from the options to get the bare minimum configuration, just like the React Native one with JavaScript.
npx create-expo-app --template blank
This command helps you to install app on basic format which is 'jsx' format.
Hello everyone,
I'm relatively new to the world of react-native.
I've now come across the fact that I wanted to learn some React in my spare time and made something with ChakraUi.
Now my app has been built so well that I want to convert it into a mobile app.
I have read a lot that the first step with Expo was a good solution for me.
But I have some questions that I still have problems understanding.
If I want to build a new app with npx create-expo-app@latest, the structure is quite complicated for me at first and the one thing is that TypeScript is used.
I mainly only used JavaScript in my React app. Can I get away from TypeScript at all?
Another question is. Do I need such a complicated structure for now.
Can't I use something like this: https://snack.expo.dev/?platform=ios
Here the structure looks pretty simple and understandable.