OTA Updates

QuickWrap supports OTA Updates from your custom server.

OTA Update is disabled by default. You can enable it by setting otaEnabled to true in src/config/appConfig.ts

1. Open src/hooks/useOTAUpdates.ts and changeVERSION_API_URL to your API/JSON url. Your API/JSON url should return:

config.json

  • version: The build version of your bundle (it should be incremented from the previous update)
  • downloadAndroidUrl: The URL for downloading the Android bundle (uploaded to your server / firebase storage).
  • downloadIosUrl: The URL for downloading the iOS bundle (uploaded to your server / firebase storage)."
  • 2. Create Android Bundle, Open terminal and run

    terminal

    Once completed, you will find your Android bundle file atandroid/index.android.bundle.zip. Upload it to your server and update thedownloadAndroidUrl in your config file.

    3. Create iOS Bundle, Open terminal and run

    terminal

    Once completed, you will find your Android bundle file atios/main.jsbundle.zip. Upload it to your server and update thedownloadIosUrl in your config file.

    4. Update Config

    Finally, update the version in your config file and apply the changes.