Skip to main content

Change the mobile data from one SIM to Another in android Phone

Solution:

1.Swipe down the navigation bar of your phone in the top.

2.Long press the mobile data option shown in the top "II".It will navigate you to one screen

3.Scroll to bottom of the screen.

4.It will show you options like "Dial" and "Internet"

5.Select the internet option.Select the sim which you want to activate mobile data.

6. Mobile data activated for that particular sim 

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 >