Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.09 KB

README.md

File metadata and controls

50 lines (41 loc) · 2.09 KB

flutter_nfc_hce_reader

"Flutter NFC Hce Reader Example"

NFC HCE Reader Example

"The Nfc Hce Reader Example is a sample that utilizes the nfc_manager library to read NFC host card emulation tags on Android. The Nfc Hce Aid used is D2760000850101."

Setup

"Reference: https://pub.dev/packages/nfc_manager"

Android Setup

  • Add android.permission.NFC to your AndroidManifest.xml.
     <uses-permission android:name="android.permission.NFC" />
     <uses-feature android:name="android.hardware.nfc" android:required="true" />
     <uses-feature android:name="android.hardware.nfc.hce" android:required="true" />

iOS Setup