Reputation: 1065
I created some POC for application in React Native.
I used create-react-native-app as the base for it. It's wrapped with Expo app.
Now I need to create some pipelines for it. I am using Gitlab as my CI.
I suppose that I should eject this application from Expo. But app's development with Expo is really good, I can quickly debug many things there and I have many things out-of-the-box.
How I should create whole flow if after ejecting I need to test it and deploy to Google Play/App Store?
Is it possible to eject this app as the CI step?
Upvotes: 0
Views: 267
Reputation: 860
There’s no need to eject your app, if all you want is to deploy it to Google Play and Apple App Store. To do this you can use Expo to build a standalone app. The Expo CLI includes commands you can use to build your app to get the .apk and .ipa files for deploying it to the stores.
Upvotes: 1