Can connect to internet with new blynk iot app

I can seem to connect to the internet with my esp32. I am using the new blynk app… i keep getting this error. I am using the partition schme Huge app(3Mb NO OTA/1Mb SPIFFS). Is this the problem?
image

#define BLYNK_TEMPLATE_ID "TMPLxDBPx0_5"
#define BLYNK_DEVICE_NAME "FYP Project"
#define BLYNK_FIRMWARE_VERSION        "0.1.0"
#define BLYNK_PRINT Serial
#define APP_DEBUG
#define BLYNK_PRINT Serial
#include "BluetoothSerial.h"
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run
`make menuconfig` to and enable it
#endif
BluetoothSerial SerialBT;
#include "BlynkEdgent.h"
int temp = 0;
int i=0;
int x=0;
int Vlimit=60;
int Noti;
BLYNK_READ(5)
{
  temp=temp +1;
  Blynk.virtualWrite(V5, temp);
  Serial.print("Temp is equal to:"); 
  Serial.print(temp);
  Serial.print("\n");
}

BLYNK_WRITE(V1) 
{
  Noti = param.asInt();
 Serial.print("Notification =");
 Serial.print(Noti);
 Serial.print("\n");  
}

void setup()
{
  Serial.begin(115200);
  delay(100);
  BlynkEdgent.begin();
  btStart();
  SerialBT.begin("ESP32_test");
}

void loop() {
  BlynkEdgent.run();
  if (temp<Vlimit && Noti==1){
      Blynk.notify("!!!Battery SOC below 25%. Battery Unable to start the car");
  }
     if (SerialBT.connected())
  {
    SerialBT.print(i);
    //Serial.print(i);
    SerialBT.print("|");
    SerialBT.print(x);
    SerialBT.print("|");
    SerialBT.print(Vlimit);
    delay(4000);
    i++;
    x=x+5;
  }
}


I don’t think Blynk 2.0 supports Bluetooth yet.

Pete.

B.T.W. use

Blyynk.logEvent

Instead of notify```

@PeteKnight
I’m using Bluetooth with MIT app inventor. Does it effect the blynk?

@VIGHNESHNS2008
Thank you. i will change it.