GNSS zaman algılama

Android 12'den itibaren Android, time_detector hizmetine Unix epoch zamanları önermek için isteğe bağlı olarak bir Global Navigasyon Uydu Sistemi (GNSS) kullanabilir. Bu özellik AOSP'de varsayılan olarak etkin değildir.

GNSS zaman algılama özelliği etkinleştirildiğinde gnss_time_update_service, GNSS kaynaklarından gelen konum güncellemelerini pasif olarak dinler ve GNSS önerilerini time_detector hizmetine gönderir. Böylece time_detector hizmeti, sistem saatinin öneriyle eşleşecek şekilde güncellenip güncellenmeyeceğini belirler.

Güç kullanımına 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 öğesinin öncelik listesindeki konumu, diğer kaynaklardan gelen önerilere kıyasla GNSS önerilerine verilen önceliği belirler.

Aşağıda, GNSS zaman algılamanı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ılamayı test etmek için adb shell cmd location komutlarını kullanabilirsiniz. Bir konumu 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 dair örnekler gösterilmektedir:

# 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