การตรวจจับเวลาของ GNSS

ตั้งแต่ Android 12 เป็นต้นไป Android อาจใช้ระบบนำทางด้วยดาวเทียมทั่วโลก (GNSS) เพื่อแนะนำเวลาตามยุค Unix ให้กับบริการ time_detector ซึ่งจะไม่เปิดใช้โดยค่าเริ่มต้นใน 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 ในเซิร์ฟเวอร์ระบบอย่างชัดเจน

คุณต้องอัปเดตทั้งค่า config_enableGnssTimeUpdateService และ config_autoTimeSourcesPriority ในไฟล์ core/res/res/values/config.xml เพื่อเปิดใช้ฟีเจอร์นี้ ตั้งค่าสำหรับ config_enableGnssTimeUpdateService เป็น true และเพิ่ม gnss ลงในรายการสินค้าสำหรับ config_autoTimeSourcesPriority ตําแหน่งของ gnss ในรายการลําดับความสําคัญจะกําหนดลําดับความสําคัญของคําแนะนํา GNSS เทียบกับคําแนะนําจากแหล่งที่มาอื่นๆ

ต่อไปนี้คือตัวอย่างไฟล์ core/res/res/values/config.xml ที่เปิดใช้การตรวจจับเวลา GNSS และ gnss อยู่ในลำดับความสำคัญเป็นอันดับ 3 รองจาก network และ telephony

<!-- 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