Od Androida 12 Android może opcjonalnie używać globalnego systemu nawigacji satelitarnej (GNSS) do sugerowania czasów uniksowych w usłudze time_detector. Ta opcja nie jest domyślnie włączona w AOSP.
Gdy wykrywanie czasu GNSS jest włączone, usługa gnss_time_update_service
pasywnie odbiera aktualizacje lokalizacji z źródeł GNSS i przesyła sugestie GNSS do usługi time_detector
. Usługa time_detector
określa następnie, czy zaktualizować zegar systemowy zgodnie z sugestią.
Wpływ na zużycie energii
Urządzenie AOSP gnss_time_update_service
pasywnie nasłuchuje aktualizacji lokalizacji. Oznacza to, że nigdy nie włącza aktywnie GPS-a ani nie zużywa dodatkowej energii. Oznacza to też, że jeśli inna aplikacja lub usługa w systemie nie prosi aktywnie o aktualizacje lokalizacji, gnss_time_update_service
nie otrzyma aktualizacji lokalizacji ani nie zaproponuje czasu GNSS.
Implementacja
Aby włączyć wykrywanie czasu GNSS, producenci urządzeń muszą wyraźnie włączyć tę funkcję na serwerze systemowym.gnss_time_update_service
Aby włączyć tę funkcję, musisz zaktualizować wartości config_enableGnssTimeUpdateService
i config_autoTimeSourcesPriority
w pliku core/res/res/values/config.xml
. Ustaw wartość config_enableGnssTimeUpdateService
na true
i dodaj gnss
do listy elementów dla config_autoTimeSourcesPriority
. Pozycja gnss
na liście priorytetów określa priorytet przypisany do sugestii GNSS w porównaniu z tymi z innych źródeł.
Poniżej znajduje się przykładowy plik core/res/res/values/config.xml
, w którym włączono wykrywanie czasu rzeczywistego GNSS, a element gnss
ma trzecią pozycję na liście priorytetów po elementach network
i 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>
Debugowanie i testowanie
Aby przetestować wykrywanie czasu GNSS, możesz użyć poleceń adb shell cmd location
.
Za pomocą tych poleceń możesz dodać testowych dostawców informacji o lokalizacji, w których możesz określić lokalizację i powiązany czas GNSS. gnss_time_update_service
nasłuchuje tych aktualizacji lokalizacji i okresowo przedstawia sugestie.
Oto przykłady poleceń 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