mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
fix(apple): use TAG NFC reader format for iOS 26 SDK
App Store upload with the iOS 26 SDK rejects the NDEF value (error 90778 "NDEF is disallowed") and requires TAG. NFCNDEFReaderSession keeps working under the TAG entitlement, so no code changes are needed.
This commit is contained in:
@@ -2,10 +2,12 @@
|
|||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<!-- iOS: NFC NDEF reading/writing (NFCNDEFReaderSession requires NDEF). -->
|
<!-- iOS: NFC reader formats. The iOS 26 SDK requires TAG here and rejects
|
||||||
|
NDEF at App Store upload (error 90778 "NDEF is disallowed"). Our
|
||||||
|
NFCNDEFReaderSession usage keeps working under the TAG entitlement. -->
|
||||||
<key>com.apple.developer.nfc.readersession.formats</key>
|
<key>com.apple.developer.nfc.readersession.formats</key>
|
||||||
<array>
|
<array>
|
||||||
<string>NDEF</string>
|
<string>TAG</string>
|
||||||
</array>
|
</array>
|
||||||
|
|
||||||
<!-- macOS App Sandbox: user-selected files for share/receive, and network
|
<!-- macOS App Sandbox: user-selected files for share/receive, and network
|
||||||
|
|||||||
Reference in New Issue
Block a user