Android 12'den itibaren Android isteğe bağlı olarak Küresel Navigasyon Uydu Sistemi'ni (GNSS) kullanarak time_detector hizmetine sunuldu. Bu, AOSP'de varsayılan olarak etkin değildir.
GNSS zaman algılama özelliği etkinleştirildiğinde gnss_time_update_service
pasif olarak
GNSS kaynaklarından gelen konum güncellemelerini dinler ve GNSS önerilerini
time_detector
hizmeti. Ardından time_detector
hizmeti,
saatinizi öneriyle eşleşecek şekilde güncelleyin.
Güç kullanımına etkisi
AOSP gnss_time_update_service
, konum güncellemelerini pasif olarak dinler. Bu
bu, GPS'in hiçbir zaman aktif olarak açılmayacağı veya ek güç tüketmeyeceği anlamına gelir. Bu
aynı zamanda sistemdeki başka bir uygulama veya hizmet
konum güncellemesi isteğinde bulunursanız gnss_time_update_service
, konum bilgisi almayacak
güncelleme ve GNSS zamanı önerme.
Uygulama
GNSS zaman algılama özelliğinin etkinleştirilmesi için cihaz üreticilerinin
gnss_time_update_service
değerleridir.
Hem config_enableGnssTimeUpdateService
hem de
core/res/res/values/config.xml
içinde config_autoTimeSourcesPriority
değer
dosyasının güncellenmesi gerekiyor. Şu değeri ayarlayın:
true
için config_enableGnssTimeUpdateService
ve öğe listesine gnss
ekleyin
(config_autoTimeSourcesPriority
için). gnss
öğesinin öncelikteki konumu
Bu liste, bu öneriler açısından GNSS önerilerine verilen önceliği belirler.
diğer kaynaklardan alınmış.
Aşağıda, GNSS'nin etkinleştirildiği bir core/res/res/values/config.xml
dosyası gösterilmektedir
zaman algılama etkinleştirildi ve gnss
, öncelik listesinde üçüncü sırada
network
ve 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>
Hata ayıklama ve test etme
GNSS zaman algılamayı test etmek için adb shell cmd location
komutlarını kullanabilirsiniz.
Konum bilgisi belirleyebileceğiniz test konumu sağlayıcıları eklemek için
konumu ve ilişkili GNSS süresini gösterir. gnss_time_update_service
dinliyor
ve düzenli olarak önerilerde bulunur.
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 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