2025년 3월 27일부터 AOSP를 빌드하고 기여하려면 aosp-main
대신 android-latest-release
를 사용하는 것이 좋습니다. 자세한 내용은 AOSP 변경사항을 참고하세요.
FeliCa 호스트 카드 에뮬레이션
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
RFID 스마트 카드 시스템인 펠리시티 카드 (FeliCa)는 일본, 홍콩 및 다른 아시아 태평양 (APAC) 지역 시장의 NFC 표준입니다. 이 지역에서 FeliCa 채택이 늘어나고 있으며 대중교통, 소매업 및 고객 충성도 분야에서 널리 사용되고 있습니다. 이 지역에서 사용하는 Android 기기에 FeliCa 지원을 추가하면 유용성이 향상됩니다.
구현
HCE FeliCa에는 NFC-F(JIS 6319-4) 표준을 지원하는 NFC 하드웨어가 필요합니다.
FeliCa의 호스트 카드 에뮬레이션(HCE)은 기본적으로 Android의 기존 HCE 구현과 병렬로 구현됩니다. 필요한 경우 FeliCa HCE는 FeliCa용 새 클래스를 만들고 가능하다면 기존의 HCE 구현과 병합합니다.
다음 Android 구성요소는 Android 오픈소스 프로젝트(AOSP)에 포함되어 있습니다.
- 프레임워크 클래스
- 공개 HostNfcFService(편의 서비스 클래스)
- @hide NfcFServiceInfo
- 핵심 NFC 프레임워크 수정
대부분의 Android 플랫폼 기능과 마찬가지로 제조업체는 드라이버를 작성하여 하드웨어가 API와 호환되도록 합니다.
유효성 검사
Android 호환성 테스트 모음을 사용하여 이 기능이 의도한 대로 작동하는지 확인하세요. CTS 인증기(NfcTestActivity)는 android.hardware.nfc.hcef
기능 상수를 보고하는 기기의 구현을 테스트합니다.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-03-26(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-03-26(UTC)"],[],[],null,["# Host card emulation of FeliCa\n\nFelicity Card (FeliCa), an RFID smart card system, is the NFC standard in\nJapan, Hong Kong, and other markets in the Asia-Pacific (APAC) region. It has\nbeen expanding in adoption in that region and is well used among transit,\nretail, and loyalty services. Adding support for FeliCa in Android devices\ndestined for that region improves their usefulness.\n\nImplementation\n--------------\n\nHCE FeliCa requires NFC hardware that supports the NFC-F (JIS 6319-4) standard.\n\nHost Card Emulation (HCE) of FeliCa is essentially a parallel implementation to\nthe existing HCE implementation on Android; it creates new classes for FeliCa\nwhere it makes sense and merges with the existing HCE implementation where\npossible.\n\nThe following Android components are included in the Android Open Source Project\n(AOSP):\n\n- Framework classes\n - Public HostNfcFService (convenience service class)\n - @hide NfcFServiceInfo\n- Modifications to core NFC framework\n\nAs with most Android platform features, manufacturers write the drivers to\nmake the hardware work with the API.\n\nValidation\n----------\n\nUse the [Android Compatibility\nTest Suite](/docs/compatibility/cts) to ensure this feature works as intended. CTS Verifier\n(NfcTestActivity) tests this implementation for devices reporting the\n`android.hardware.nfc.hcef` feature constant."]]