החל מ-Android 12, מערכת Android יכולה להשתמש במערכת ניווט לוויינית גלובלית (GNSS) כדי להציע לשירות time_detector זמני תחילת עידן של Unix. האפשרות הזו לא מופעלת כברירת מחדל ב-AOSP.
כשזיהוי הזמן של GNSS מופעל, gnss_time_update_service
מאזין באופן פסיבי לעדכוני מיקום ממקורות GNSS ושולח הצעות ל-GNSS לשירות time_detector
. לאחר מכן, השירות time_detector
קובע אם לעדכן את שעון המערכת בהתאם להצעה.
ההשפעה על צריכת החשמל
gnss_time_update_service
ב-AOSP מקשיב באופן פסיבי לעדכוני מיקום. כלומר, הוא אף פעם לא מפעיל את ה-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
נמצא במקום השלישי ברשימת העדיפויות של האפליקציות 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