Skip to main content

Remove Gmail account from LYF mobile

Solution:

Goto settings in your LYF mobile select Accounts and then select Google account it will display the accounts already added.

Select the account the you want to remove.It will show you the account with app data,calender and some options.

Above that one three dot will be shown.If you click that it will show you two options.One is sync now and another one is remove account select remove account it will be removed..Enjoy...



Settings -> Accounts -> google accounts -> select the account -> remove account

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 >