Push Notifications Can't work

i want to use Notifications function,it seems easy,but i still not make it worked yet.
when i add Push Notifications,the app told me , need google play service,so i install google play(it’s so hard to install google play in China).after i installed, there is no warning any more ,but the notify is still cant work.
need help!!
• Hardware:Wemos D1
• Smartphone OS (Android 8.0)
• Blynk server
• Blynk Library version :0.5.2
•App version:2.20.3

#define BLYNK_PRINT Serial 
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = "c35086b1bbb14ab6xxxxxa38d21d6001";
char ssid[] = "Xiaomi_0432";
char pass[] = "xxxx";
BlynkTimer timer;
void notifyUptime()
{
  long uptime = millis() / 60000L;
  Blynk.notify(String("Running for ") + uptime + " minutes.");
}

void setup()
{
  Serial.begin(9600);
  Blynk.begin(auth, ssid, pass);
   Blynk.notify("Device started");
   timer.setInterval(60000L, notifyUptime);
}
void loop()
{
  Blynk.run();
  timer.run();
}

Hello. Push notifications don’t work for China. We use google firebase service for push notifications and it is firewalled in China.

i guess so .:joy:
but i have VPN , my smartphone can get google.

Do you have widget in your project? Is project is active (run mode)?

yeah, all done!
but,the Wemos D1 maybe can’t get google, the VPN is only worked on my phone and laptop. i don’t know how to use VPN in the Wmos D1

You don’t need VPN for hardware in that case. As requires from hardware goes to Blynk server and from Blynk for firebase.

ok, thks for your reply.

one more thing.
i pulled a request on project https://github.com/blynkkk/android-texts , i translate it into Chinese, can you receive it? I hope the app would be change the language oneday, so that my student can use it easily in China.

last one.
I plan to write a book about IOT with Blynk in Chinese for teenagers,Can you give me authorization?