1

我正在为 Android 做自动化,对于一些测试,我需要从代码中禁用/启用位置服务。我试过这样的命令:

adb shell settings put secure location_providers_allowed -gps
adb shell settings put secure location_mode 0

但似乎在 Android 7...9 上没有任何效果。

有没有办法在一个命令中做到这一点?

谢谢

4

1 回答 1

1

启用:adb shell settings put secure location_mode 3

禁用:adb shell 设置 put secure location_mode 0

于 2020-11-09T10:52:26.950 回答