จาก Android 12 Android สามารถใช้ ระบบดาวเทียมนำทางทั่วโลก (GNSS) เพื่อแนะนำเวลา Epoch ของ 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 UIDadb 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 provideradb 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