mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
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.
27 lines
973 B
XML
27 lines
973 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<!-- 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>
|
|
<array>
|
|
<string>TAG</string>
|
|
</array>
|
|
|
|
<!-- macOS App Sandbox: user-selected files for share/receive, and network
|
|
client/server for the local P2P transfer. These keys are ignored on iOS. -->
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<true/>
|
|
<key>com.apple.security.files.user-selected.read-write</key>
|
|
<true/>
|
|
<key>com.apple.security.files.downloads.read-write</key>
|
|
<true/>
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.network.server</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|