Skip to content Skip to sidebar Skip to footer

How To Generate Apk Or Ios File Of React Native Project

I am building a RN project with 'create-react-native-app' and 'Expo'. So how it is possible to run on Android & Ios device? How i can generate APK file? I am using sublime text

Solution 1:

If you don't mind opening your app through the Expo app on real devices, all you need is to publish it onto the Expo ecosystem. Read more about publishing.

If you do mind that extra step and want to go the normal way, you need to create a standalone app for distribution:

When you’re ready to distribute your app to end-users, you can create a standalone app binary (an ipa or apk file) and put it in the iOS App Store and the Google Play Store. See the full guide to building a standalone app.

Source

Post a Comment for "How To Generate Apk Or Ios File Of React Native Project"