how to handle setup for NFC without NDEF & PACE and still support iOS 15.0

We have NFC capabilties enabled for our app ID - com.uob.mightyvn but our minimum deployment target is 15.0. We do not have an option deselect PACE from provisioning profile. Hence, the validation is failed for IPA. Invalid entitlement for core nfc framework. The sdk version '18.2' and min OS version '15.0' are not compatible for the entitlement 'com.apple.developer.nfc.readersession.formats' because 'NDEF is disallowed'

Earlier versions of Xcode were automatically inserting NDEF to the com.apple.developer.nfc.readersession.formats entry - this has since been deprecated and replaced by TAG.

If you remove the NDEF entry from your property list, the error will go away.

PACE is separate from all this, and if you need it, you can still use it, don't need to remove or deselect it.

how to handle setup for NFC without NDEF & PACE and still support iOS 15.0
 
 
Q