Skip to main content

Share movies android phone to android phone without shareit app

 Solution:

Use NearByshare app in your android phone to share movies.It will be share data within few mins.

Steps:

1.Select the file to share 

2.Goto share options and select nearby share -> open Nearbyshare in other phone -> tap the displayed user in the app.It will send quickly compare to share it.

3.If Nearby share not shown then goto top menu edit option add Nearbyshare and send it..

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 >