Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 486 Bytes

File metadata and controls

30 lines (19 loc) · 486 Bytes

Flutter NFC Compatibility Check

Installation

Add to pubspec.yaml:

dependencies:
  flutter_nfc_compatibility: ^0.0.1
import 'package:flutter_nfc_compatibility/flutter_nfc_compatibility.dart';

How to use

Android setup

Add those two lines to your AndroidManifest.xml on the top

<uses-permission android:name="android.permission.NFC" />
<uses-feature
        android:name="android.hardware.nfc"
        android:required="true" />