You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NFC Android support, works dispatching NFCTag encapsulated into an intent.
It will be necessary to add nfc permissions to manifest file <uses-permission android:name="android.permission.NFC" />. Moreover proper <intent-filter> are needed in order to permit the app to filter for the desidered NFCIntent, as well as the addition of a new Activity that will check for it and will eventually extract the payload.
Documentation: https://developer.android.com/guide/topics/connectivity/nfc
The text was updated successfully, but these errors were encountered:
NFC Android support, works dispatching NFCTag encapsulated into an intent.
It will be necessary to add nfc permissions to manifest file
<uses-permission android:name="android.permission.NFC" />
. Moreover proper<intent-filter>
are needed in order to permit the app to filter for the desidered NFCIntent, as well as the addition of a new Activity that will check for it and will eventually extract the payload.Documentation: https://developer.android.com/guide/topics/connectivity/nfc
The text was updated successfully, but these errors were encountered: