Nidhin
Nidhin

Reputation: 1838

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.

Upvotes: 5

Views: 8532

Answers (1)

Nidhin
Nidhin

Reputation: 1838

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.

Upvotes: 4

Related Questions