get_nfc_extra_id

sample plugin to get NFC extra_id


Keywords
cordova, nfcextraid, NFC, cordova-android
License
ISC
Install
npm install get_nfc_extra_id@1.0.3

Documentation

GetNfcExtraId

a plugin to get the NFC's extra_id

NOTIFY:

Used to android.

Install:

cordova plugin add https://github.com/jieyuchongliang/GetNfcExtraId.git

Use:

step1:

add :

<uses-feature

android:name="android.hardware.nfc"

android:required="true"/>

in your AndroidManifest.xml file.

step2:

methed:

cordova.plugins.GetNfcExtraId.show(success,error);

function success(message){

alert(message);

};

function error(message){

alert(message);

};