2025년 3월 27일부터 AOSP를 빌드하고 기여하려면 aosp-main
대신 android-latest-release
를 사용하는 것이 좋습니다. 자세한 내용은 AOSP 변경사항을 참고하세요.
작은 셀 지원
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Android 11 이상으로 출시된 기기는 셀의 CSG 정보를 가져오는 셀 식별 API의 메서드를 통해 비공개 구독자 그룹(CSG)을 지원할 수 있습니다. 이는 비공개 구독자 그룹을 통해 작은 셀을 관리하는 모바일 네트워크 운영자(MNO)에게 유용합니다. CSG 정보는 ClosedSubscriberGroupInfo
클래스로 표현됩니다.
구현
Android 11 이상을 실행하는 기기에서 CGG를 지원하려면 radio/1.5/types.hal
에서 다음 함수를 구현합니다.
ClosedSubscriberGroupInfo
: 모든 CellIdentity
인스턴스에 선택적으로 포함됩니다. 이 구조는 셀이 속한 비공개 구독자 그룹의 세부정보(있는 경우)를 제공하는 데 사용됩니다. 이는 흔히 개인 LTE 기기 같은 작은 셀을 식별하는 데 사용됩니다. CBRS LTE와 같은 배포에도 사용할 수 있습니다.
CellIdentityLte
: 추가 PLMN-ID 목록을 지원합니다.
CellIdentityWcdma
: 추가 PLMN-ID 목록을 지원합니다.
CellIdentityTdscdma
: 추가 PLMN-ID 목록을 지원합니다.
RegStateResult
: 업데이트된 CellIdentity
구조와 RPLMN을 나타내는 필드가 포함되어 있습니다.
유효성 검사
구현을 테스트하려면 다음 CTS 테스트를 실행하세요. CellInfoTest
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-07-27(UTC)
[null,null,["최종 업데이트: 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)."]]