Skip to main content

Share movies from android phone to laptop in share it || share files from phone to laptop || share files from android phone to macbook

Solution:

1. Open share it in your phone.

2.In home screen top right corner four cube icon is shown click on that.

3. In that select option share jio.

4.It will navigate you one screen and shows wifi name and password.

5.Goto your system select that wifi and connect using the password shown in the phone screen.

6.After connected search the files you want to share in your phone.

7.Goto the laptop and open browser and open the below link

http://192.168.43.1:2999/

8. The shared files will be shown in browser.Click the download icon for individual files and download.

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 >