Fulguris icon indicating copy to clipboard operation
Fulguris copied to clipboard

Support NFC intent

Open Slion opened this issue 2 months ago • 0 comments

When the system scans an NFC tag it can result in opening a URL. Something like:

<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED" />

    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <data android:scheme="https" />
    <data android:scheme="http" />
</intent-filter>

Slion avatar Oct 19 '25 21:10 Slion