Skip to content

Commit

Permalink
feat(android): add intent-filter for NDEF_DISCOVERED
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Dec 30, 2023
1 parent 4e0ab45 commit c635292
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/dev.robingenz.capacitorjs.nfc.demo" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>

</activity>

Expand Down

0 comments on commit c635292

Please sign in to comment.