如何更改Android Things设备上的日期?
作者:互联网
我在Raspberry Pi 3 Model B上使用Android Things Developer Preview.有没有办法设置正确的日期/时间/时区?
解决方法:
最简单的方法是使用ADB上的date shell命令.它需要root,但所有预览图像都应允许root访问.这是一个检查日期,设置它,然后验证日期更改卡住的示例:
$adb root
restarting adbd as root
$adb shell date
Sat Jan 1 00:02:40 GMT 2000
$adb shell date 1227120016
Tue Dec 27 12:00:00 GMT 2016
$adb shell date
Tue Dec 27 12:00:02 GMT 2016
您可以通过adb shell date -h确定date命令接受的格式.请注意,由于大多数开发工具包没有电池供电的RTC,因此这种更改可能无法在电源循环中持续存在.
标签:raspberry-pi3,android-things,android,raspberry-pi 来源: https://codeday.me/bug/20190724/1523841.html