Skip to main content

Download whatsapp status in Android || Using Mxplayer how to download whatsapp status

Solution:

1. Goto play store search and download mxplayer app

2. After installing open the app in top it will show you "Local Folders" near by that "more"  option will be there .

3. Click on that it will navigate to your local folder list

4. In top of the screen you had three dot option click on that.It will show you settings.Navigate to settings.

5. Select List option scroll to that it will show you an option "Recognize .nomedia".Select on that it will show you on all the status in the folder sreen with folder named ".statuses"

Enjoy to save the status....One more thing that it will be available only the status shown to you in your whatsapp....

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 >