美文网首页
android 系统时间不同步问题

android 系统时间不同步问题

作者: 辉色投像 | 来源:发表于2020-11-23 17:33 被阅读0次

国内的将服务器地址改为中国的

修改代码:

LINUX/android/frameworks/base/core/res/res/values/config.xml

-    <string translatable="false" name="config_ntpServer">time.android.com</string> 

+    <string translatable="false" name="config_ntpServer">cn.pool.ntp.org</string>

将时间同步频率增加:

- <integer name="config_ntpPollingIntervalShorter">60000</integer>

+    <integer name="config_ntpPollingIntervalShorter">1000</integer>

-    <integer name="config_ntpRetry">3</integer>

+    <integer name="config_ntpRetry">10</integer>

相关文章

网友评论

      本文标题:android 系统时间不同步问题

      本文链接:https://www.haomeiwen.com/subject/cheviktx.html