Skip to main content

Export contacts from moto c Plus phone || Transfer contacts from one android phone to another

Solution:

1. Goto contacts app.

2. Select dot menu -> select import/export contacts

3. In top "0 selected" shown.tap on that and select all

4. After that it will show you Export from gmail/sim1/sim2/phone.Select where that contacts are stored.

5.After that you select export to gmail/internal storage.

6.Select internal storage.

7. It will show you that .vcf file stored in the internal storage.

8. Goto File manager and send the .vcf file from your phone to another phone via bluetooth or other options.

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 >