Search code examples
androidxamarin.formswifithrottlinghuawei-mobile-services

Is it possible to disable WiFi throttling on Android(Xamarin.Forms) if the device does not have in Developer Menu this option(Huawei)?


I'm working on an application in Xamarin.Forms and I try to use nearby Wi-Fi signals for indoor tracking. But it is not possible because of Android Wi-Fi Throttling.

How can I disable it, event my Huawei P20 Pro does not have this option in Developer Menu?

Can be another options to scan efficiently Wi-Fi signals on Android or is not possible as long as Wi-Fi Throttling can't be controlled?


Solution

  • I did it by following this steps How to quickly install and use ADB

    And finally I have run this command:

    adb shell settings put global wifi_scan_throttle_enabled 0

    That has taken 3 minutes. >))