Home | History | Annotate | Download | only in connect
      1 <html devsite>
      2   <head>
      3     <title>Host Card Emulation of FeliCa</title>
      4     <meta name="project_path" value="/_project.yaml" />
      5     <meta name="book_path" value="/_book.yaml" />
      6   </head>
      7   <body>
      8   <!--
      9       Copyright 2017 The Android Open Source Project
     10 
     11       Licensed under the Apache License, Version 2.0 (the "License");
     12       you may not use this file except in compliance with the License.
     13       You may obtain a copy of the License at
     14 
     15           http://www.apache.org/licenses/LICENSE-2.0
     16 
     17       Unless required by applicable law or agreed to in writing, software
     18       distributed under the License is distributed on an "AS IS" BASIS,
     19       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     20       See the License for the specific language governing permissions and
     21       limitations under the License.
     22   -->
     23 
     24 
     25 
     26 <p>Felicity Card, or FeliCa, an RFID smart card system, is the NFC standard in
     27 Japan, Hong Kong and other markets in the Asia-Pacific (APAC) region. It has
     28 been expanding in adoption in that region and is well used among transit,
     29 retail, and loyalty services. Adding support for FeliCa in Android devices
     30 destined for that region improves their usefulness.</p>
     31 
     32 <h2 id="implementation">Implementation</h2>
     33 
     34 <p>HCE FeliCa requires NFC hardware that supports the NFC-F (JIS 6319-4) standard.</p>
     35 
     36 <p>Host Card Emulation (HCE) of FeliCa is essentially a parallel implementation to
     37 the existing HCE implementation on Android; it creates new classes for FeliCa
     38 where it makes sense and merges with the existing HCE implementation where
     39 possible.</p>
     40 
     41 <p>The following Android components are included in the Android Open Source Project
     42 (AOSP):</p>
     43 
     44 <ul>
     45   <li>Framework classes
     46     <ul>
     47       <li>Public HostNfcFService (convenience service class)
     48       <li>@hide NfcFServiceInfo
     49     </ul>
     50   <li>Modifications to core NFC framework</li></ul>
     51   </li>
     52 </ul>
     53 
     54 <p>As with most Android platform features, manufacturers write the drivers to
     55 make the hardware work with the API.</p>
     56 
     57 <h2 id="validation">Validation</h2>
     58 
     59 <p>Use the <a href="/compatibility/cts/index.html">Android Compatibility
     60 Test Suite</a> to ensure this feature works as intended. CTS Verifier
     61 (NfcTestActivity) tests this implementation for devices reporting the
     62 <code>android.hardware.nfc.hcef</code> feature constant.</p>
     63 
     64   </body>
     65 </html>
     66