हमारा सुझाव है कि 27 मार्च, 2025 से AOSP को बनाने और उसमें योगदान देने के लिए, aosp-main
के बजाय android-latest-release
का इस्तेमाल करें. ज़्यादा जानकारी के लिए, AOSP में हुए बदलाव लेख पढ़ें.
छोटे सेल के लिए सहायता
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Android 11 या इसके बाद के वर्शन वाले डिवाइसों में, सेल आइडेंटिफ़िकेशन एपीआई के तरीकों की मदद से, क्लोज़्ड सदस्य ग्रुप (सीएसजी) के लिए सहायता मिल सकती है. इन तरीकों से, सेल के सीएसजी की जानकारी मिलती है. यह उन मोबाइल नेटवर्क ऑपरेटर (एमएनओ) के लिए फ़ायदेमंद है जो क्लोज़्ड सदस्य ग्रुप के ज़रिए छोटे सेल मैनेज करते हैं. सीएसजी की जानकारी, ClosedSubscriberGroupInfo
क्लास में दिखती है.
लागू करना
Android 11 या इसके बाद के वर्शन वाले डिवाइसों पर सीजीजी की सुविधा इस्तेमाल करने के लिए, radio/1.5/types.hal
में ये फ़ंक्शन लागू करें.
ClosedSubscriberGroupInfo
: हर CellIdentity
इंस्टेंस के साथ वैकल्पिक तौर पर शामिल किया जाता है. इस स्ट्रक्चर का इस्तेमाल, किसी सेल के चैनल के सदस्यों के उस क्लोज़्ड ग्रुप के बारे में जानकारी देने के लिए किया जाता है जिससे वह सेल जुड़ी है. इसका इस्तेमाल, आम तौर पर छोटे सेल की पहचान करने के लिए किया जाता है. जैसे, निजी LTE डिवाइस. इसका इस्तेमाल, CBRS LTE जैसे डिप्लॉयमेंट में भी किया जा सकता है.
CellIdentityLte
: अन्य PLMN-ID की सूची के साथ काम करता है.
CellIdentityWcdma
: अन्य PLMN-ID की सूची के साथ काम करता है.
CellIdentityTdscdma
: अन्य PLMN-ID की सूची के साथ काम करता है.
RegStateResult
: इसमें अपडेट किया गया CellIdentity
स्ट्रक्चर और आरपीएलएमएन को दिखाने के लिए एक फ़ील्ड शामिल है.
पुष्टि करें
लागू की गई ट्रैकिंग की जांच करने के लिए, यह सीटीएस टेस्ट चलाएं:
CellInfoTest
.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Small cell support\n\nDevices launched with Android 11 or higher can provide\nsupport for closed subscriber groups (CSGs) through methods in the\n[cell identification APIs](https://developer.android.com/reference/android/telephony/CellIdentity)\nthat get information about a cell's CSG information. This is useful for mobile\nnetwork operators (MNOs) that manage small cells through closed subscriber\ngroups. Information about CSGs is represented in the\n[`ClosedSubscriberGroupInfo`](https://developer.android.com/reference/android/telephony/ClosedSubscriberGroupInfo)\nclass.\n\nImplementation\n--------------\n\nTo support CGGs on devices running Android 11 or\nhigher, implement the following functions in\n[`radio/1.5/types.hal`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/radio/1.5/types.hal).\n\n- `ClosedSubscriberGroupInfo`: Included optionally with every `CellIdentity` instance. This structure is used to provide details about the closed subscriber group to which a cell belongs, if any. This is commonly used to identity *small cells* such as personal LTE devices. It can also be used in deployments such as CBRS LTE.\n- `CellIdentityLte`: Supports a list of additional PLMN-IDs.\n- `CellIdentityWcdma`: Supports a list of additional PLMN-IDs.\n- `CellIdentityTdscdma`: Supports a list of additional PLMN-IDs.\n- `RegStateResult`: Includes an updated `CellIdentity` structure and a field to indicate the RPLMN.\n\nValidation\n----------\n\nTo test your implementation, run the following CTS test:\n[`CellInfoTest`](https://android.googlesource.com/platform/cts/+/3c3d33a/tests/tests/telephony/src/android/telephony/cts/CellInfoTest.java)."]]