Skip to main content

Delete my gmail account in coolpad

Solution:

In coolpad its not easy for delete my google account without my dataLoss.But its hard to find an option to delete the account in the phone.

Steps:

Goto your settings app and select accounts it will show you the accounts you synced with your device.

Then long press the left option under your phone(square option under the display that we are using the closing of apps that are in background).

Then it will show you remove the account.then select the option and delete the mail account from phone

Comments

Popular posts from this blog

Local variable for "serviceWorkerVersion" is deprecated in flutter

Problem:  Local variable for "serviceWorkerVersion" is deprecated. Use "{{flutter_service_worker_ version}}" template token instead. See  https://docs.flutter.dev/ platform-integration/web/ initialization  for more details. While try to run my flutter app in chrome it shows the above error. Solution: In script file it shows as like below < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = null ; </ script > Replace with below.It will works fine. < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = "{{flutter_service_worker_ version}}" ; </ script >