जीएनएसएस समय का पता लगाने की सुविधा

Android 12 में, Android वैकल्पिक तौर पर ग्लोबल नेविगेशन सैटलाइट सिस्टम (GNSS) का इस्तेमाल कर सकता है. इससे, time_detector सेवा को यूनिक्स के टाइम पीरियड का सुझाव दिया जा सकता है. यह सुविधा AOSP में डिफ़ॉल्ट रूप से चालू नहीं होती.

जीएनएसएस टाइम डिटेक्शन की सुविधा चालू होने पर, gnss_time_update_service जीएनएसएस सोर्स से जगह की जानकारी के अपडेट को पैसिव तौर पर सुनता है और time_detector सेवा को जीएनएसएस के सुझाव सबमिट करता है. इसके बाद, time_detector सेवा यह तय करती है कि सुझाव के हिसाब से सिस्टम घड़ी को अपडेट करना है या नहीं.

बैटरी खर्च होने पर

एओएसपी gnss_time_update_service, जगह की जानकारी से जुड़े अपडेट को लगातार सुनता है. इसका मतलब है कि यह कभी भी जीपीएस को चालू नहीं करता या ज़्यादा पावर की खपत नहीं करता. इसका मतलब यह भी है कि जब तक सिस्टम में कोई दूसरा ऐप्लिकेशन या सेवा, जगह की जानकारी के अपडेट का अनुरोध नहीं कर रही है, तब तक gnss_time_update_service को जगह की जानकारी का अपडेट नहीं मिलेगा और न ही GNSS का समय सुझाया जाएगा.

लागू करना

जीएनएसएस से समय का पता लगाने की सुविधा चालू करने के लिए, डिवाइस बनाने वाली कंपनियों को सिस्टम सर्वर में gnss_time_update_service को साफ़ तौर पर चालू करना होगा.

इस सुविधा को चालू करने के लिए, core/res/res/values/config.xml फ़ाइल में config_enableGnssTimeUpdateService और config_autoTimeSourcesPriority, दोनों वैल्यू अपडेट करनी होंगी. config_enableGnssTimeUpdateService की वैल्यू को true पर सेट करें और config_autoTimeSourcesPriority के लिए आइटम की सूची में gnss जोड़ें. प्राथमिकता वाली सूची में gnss की स्थिति से यह तय होता है कि GNSS के सुझावों को, अन्य सोर्स के सुझावों के मुकाबले कौनसी प्राथमिकता दी जाए.

यहां एक core/res/res/values/config.xml फ़ाइल का उदाहरण दिया गया है, जिसमें जीएनएसएस समय की पहचान करने की सुविधा चालू है और 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_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 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