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并将config_autoTimeSourcesPriority添加到gnss的项目列表中。 gnss在优先级列表中的位置决定了 GNSS 建议相对于其他来源的建议的优先级。

以下是一个示例core/res/res/values/config.xml文件,其中启用了 GNSS 时间检测,并且gnssnetworktelephony之后的优先级列表中排名第三。

<!-- 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. Will throw 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