Android 12'den itibaren Android, time_detector hizmetine Unix epoch zamanları önermek için isteğe bağlı olarak bir Global Navigation Satellite System (GNSS) kullanabilir. Bu özellik AOSP'de varsayılan olarak etkin değildir.
GNSS zaman algılama etkinleştirildiğinde gnss_time_update_service
, GNSS kaynaklarından gelen konum güncellemelerini pasif olarak dinler ve time_detector
hizmetine GNSS önerileri gönderir. time_detector
hizmeti, sistem saatini öneriyle eşleşecek şekilde güncelleyip güncellemeyeceğini belirler.
Güç tüketimi üzerindeki etkisi
AOSP gnss_time_update_service
, konum güncellemelerini pasif olarak dinler. Bu, GPS'yi hiçbir zaman etkin bir şekilde açmadığı veya ek güç tüketmediği anlamına gelir. Bu durum, sistemdeki başka bir uygulama veya hizmet aktif olarak konum güncellemesi istemediği sürece gnss_time_update_service
'ün konum güncellemesi almayacağı ve GNSS zamanı önermeyeceği anlamına da gelir.
Uygulama
GNSS zaman algılamasını etkinleştirmek için cihaz üreticilerinin sistem sunucusunda gnss_time_update_service
özelliğini açıkça etkinleştirmesi gerekir.
Bu özelliği etkinleştirmek için core/res/res/values/config.xml
dosyasında hem config_enableGnssTimeUpdateService
hem de config_autoTimeSourcesPriority
değerleri güncellenmelidir. config_enableGnssTimeUpdateService
değerini true
olarak ayarlayın ve config_autoTimeSourcesPriority
için öğe listesine gnss
ekleyin. gnss
değerinin öncelik listesindeki konumu, GNSS önerilerine diğer kaynaklardan gelen önerilere göre verilen önceliği belirler.
Aşağıda, GNSS zaman algılamasının etkin olduğu ve gnss
'un network
ile telephony
'ten sonra öncelik listesinde üçüncü olduğu bir örnek core/res/res/values/config.xml
dosyası verilmiştir.
<!-- 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>
Hata ayıklama ve test
GNSS zaman algılamasını test etmek için adb shell cmd location
komutlarını kullanabilirsiniz.
Bir yer ve ilişkili GNSS saatini belirtebileceğiniz test konum sağlayıcıları eklemek için bu komutları kullanın. gnss_time_update_service
bu konum güncellemelerini dinler ve düzenli aralıklarla öneriler sunar.
Aşağıda adb shell cmd location
komutlarına örnekler verilmiştir:
# 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