花瓣小跑 发表于 2024-7-24 01:06:53

【android adb命令行模仿GPS位置信息】

adb命令查询已连接设备
   adb devices
显示效果:
List of devices attached
smartdevhub.ecarx.com.cn:8225 device
使用adb命令获取GPS信息
   adb shell dumpsys location
打开定位设置界面:
   adb shell am start -a android.settings.LOCATION_SOURCE_SETTINGS
开启定位:
   adb shell settings put secure location_providers_allowed +gps
关闭定位:
   adb shell settings put secure location_providers_allowed -gps
查看定位方式:
   adb shell settings get secure location_providers_allowed (前提是位置信息开启)
修改gps定位信息
使用adb emu命令实行设备的console命令geo fix,gps的经度和纬度
   adb -s emulator-5554 emu geo fix 121.49612 31.24010

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 【android adb命令行模仿GPS位置信息】