ESP32 Firmware Shipment not proceed

Hi,
I have a esp32 connected to blynk with wifi .
I want to update firmware by firmware shipment.
I increment verison from 1.0.3 to 1.0.4 and upload in firmware shipment page.
After proceeding it stays on live progress and not advance.
what will be the problem.

here is my simple code

#include <Arduino.h>
#define BLYNK_TEMPLATE_ID "Txxxxxxxxx"
#define BLYNK_TEMPLATE_NAME "Tester"
#define BLYNK_AUTH_TOKEN "zzzzzzzzzzz"
#define BLYNK_FIRMWARE_VERSION "1.0.4"
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
char ssid[] = "zzz";
char pass[] = "zzz";
void setup()
{
  Serial.begin(115200);
  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  Serial.println(WiFi.localIP().toString());
}
void loop()
{
  Blynk.run();
}

Your code doesn’t contain any Blynk.Air OTA functionality, so it won’t work.

If you aren’t using the Edgent example then you need to take a look at this…

Pete.

ok thanks
This solves my problem.
Actually i saw the code while browsing but I thought i dont need to add extra code. :slight_smile: