Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@
<action android:name="android.nfc.action.NDEF_DISCOVERED" />

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

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 NFC URI Category Mismatch

When Android dispatches a URI-based NFC tag as NDEF_DISCOVERED with CATEGORY_BROWSABLE, this filter no longer matches because intent resolution requires the filter to contain every category on the incoming intent. A bitkit://gift-... tag can then skip Bitkit entirely, so the gift-card tap flow is not offered on affected devices.

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

<data android:scheme="bitkit" />
<data android:scheme="slash" />
Expand Down
Loading