GNSS 时间检测

从 Android 12 开始,Android 可以选择使用全球导航卫星系统 (GNSS) 向 time_detector 服务建议 Unix 纪元时间。默认情况下,这在 AOSP 中未启用。

启用 GNSS 时间检测后,gnss_time_update_service 会被动地监听来自 GNSS 源的位置信息更新,并将 GNSS 建议提交给 time_detector 服务。time_detector 服务随后会确定是否更新系统时钟以匹配建议的时间。

对功耗的影响

AOSP gnss_time_update_service 会被动地监听位置信息更新。这意味着它永远不会主动打开 GPS 或消耗额外的电量。这也意味着,除非系统中的其他应用或服务主动请求位置信息更新,否则 gnss_time_update_service 不会获得位置信息更新并建议 GNSS 时间。

实现

要启用 GNSS 时间检测,设备制造商必须在系统服务器中显式启用 gnss_time_update_service

必须更新 core/res/res/values/config.xml 文件中的 config_enableGnssTimeUpdateServiceconfig_autoTimeSourcesPriority 值才能启用此功能。将 config_enableGnssTimeUpdateService 的值设置为 true,并将 gnss 添加到 config_autoTimeSourcesPriority 的项目列表中。gnss 在优先级列表中的位置决定了 GNSS 建议相对于来自其他来源的建议的优先级。

以下是 core/res/res/values/config.xml 文件的示例,其中 GNSS 时间检测已启用,并且 gnss 在优先级列表中排在 networktelephony 之后,位列第三。

<!-- Specifies priority of automatic time sources. Suggestions from higher entries in the list
         take precedence over lower ones.
         See com.android.server.timedetector.TimeDetectorStrategy for available sources. -->
    <string-array name="config_autoTimeSourcesPriority">
        <item>network</item>
        <item>telephony</item>
        <item>gnss</item>
    </string-array>

    <!-- Enables the GnssTimeUpdate service. This is the global switch for enabling Gnss time based
         suggestions to TimeDetector service. See also config_autoTimeSourcesPriority. -->
    <bool name="config_enableGnssTimeUpdateService">true</bool>

调试和测试

要测试 GNSS 时间检测,您可以使用 adb shell cmd location 命令。使用这些命令添加测试位置提供程序,您可以在其中指定位置和关联的 GNSS 时间。gnss_time_update_service 监听这些位置更新,并定期提出建议。

以下显示了 adb shell cmd location 命令的示例

# Enable Master Location Switch in the foreground user (usually user 10 on automotive). If you just flashed, this can be done through setup wizard.
adb shell cmd location set-location-enabled true --user 10

# Add GPS test provider (This usually fails the first time. Throws a SecurityException with "android from <SOME_UID> not allowed to perform MOCK_LOCATION".)
adb shell cmd location providers add-test-provider gps

# Enable mock location permissions for previous UID
adb shell appops set UID_PRINTED_IN_PREVIOUS_ERROR android:mock_location allow

# Add GPS test provider (Should work with no errors.)
adb shell cmd location providers add-test-provider gps

# Enable GPS test provider
adb shell cmd location providers set-test-provider-enabled gps true

# Set location with time (Time can't be lower than the limit set by the lower bound.)
adb shell cmd location providers set-test-provider-location gps --location LATITUDE,LONGITUDE --time TIME