Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable wifi data tethering on Android KitKat devices?

I am using Moto e with android kitkat 4.4.4 version.After some searching on google I found that tehering is disabled to support mobile operators for their data plans.

I am able to use mobile data through usb tethering and bluetooth tethering.

like image 596
Nidhin Avatar asked Sep 29 '22 16:09

Nidhin


1 Answers

I found a solution for this problem and it help me to re-enable wifi data tethering on my kitkat phone.

  1. Download Android SDK (Developer Toolkit).
  2. Download the USB drivers for your phone.
  3. Enable "Developer Options" and "Usb debbugging".
  4. From command prompt, Change directory to "android-sdk\platform-tools"
  5. Type Command

adb shell content insert --uri content://settings/global --bind name:s:tether_dun_required --bind value:i:0

  1. To verify,type Command

adb shell content query --uri content://settings/global --where "name='tether_dun_required' AND value=0"

  1. Retstart your phone and check wifi tethering.

If you want the instructions in details please follow this post in the forum.

like image 110
Nidhin Avatar answered Nov 01 '22 10:11

Nidhin