Snickfire
Snickfire

Reputation: 512

Use Expo without their OTA

I want to know if there is a way to use Expo SDK without publishing on their servers. To be honest, i want to use my own OTA server with Electrode and a react native app, but, Expo has many helpful native resources (fb ads, SecureStore, admob, push notitications, FileSystem, Asset, Payments and many many more...). I have read and apparently it is imposible (i guess) use Expo SDK Api without using Exp online services even detaching or ejecting (CRNA) the app.

I apreciate your help

Upvotes: 1

Views: 1229

Answers (1)

Roy Wang
Roy Wang

Reputation: 11270

You need to add the follow properties to app.json

If you need to detach (to add other native modules), you need to be on Expo SDK v27:

ExpoKit projects on iOS and Android which were created with exp detach now support bundling your assets inside your native app archive so that your app can launch with no internet.

The Expo team is also planning to add the following features:

Upvotes: 3

Related Questions