Search results for

nfc

1,143 results found

Post

Replies

Boosts

Views

Activity

Reply to Can't install app to iPad when Required Device Capability has NFC?
Thank you for your support. I update my app as below according to your advice. But the issue not fixed. iPad is still Incompatible Hardware. In project Build Phased, Link Binary With Libraries” section, CoreNFC.framework is Optional. Use NFC feature only if UIDevice.current.userInterfaceIdiom == .phone in program. import CoreNFC always exist. I upload the build to TestFlight but still I can't install it to iPad. TeestFlight app on iPad show Incompatible Hardware. Build Metadata in Test flight section on App Store Connect site show at Device Requirements Device Family: iPhone, iPad Required Capabilities: arm64, nfc The initial version of this app already App Review approved and released on App Store. does it affect update and can't change Compatible Hardware? Best regards, ziotreks
Topic: App & System Services SubTopic: General Tags:
Aug ’24
NFC - React Native
We are essentially implementing a membership card feature wherein the card details originates from a third-party provider and gets stored in the Apple Wallet. We are utilizing the Passkit Generator ( https://www.npmjs.com/package/passkit-generator ) for this purpose. The challenge, or rather issue, is that when this card is saved to Apple Wallet and tapped on the NFC reader, it only shows Invalid Card. When we attempted to gather information from the third-party provider regarding this issue on both Android and iOS, they stated: For IOS we do not have any experience to share with, rather than the fact we have implemented the VAS protocol under an NDA signed with Apple. Related to Passkit we do not have any experience with it. We require your assistance to identify any potential issues.
0
0
748
Aug ’24
Reply to App Clip unavailable
Does the issue still occur? If yes, run Diagnostics in the App Clips Testing on a device as described in Verify the configuration of your released App Clip. Additionally, confirm that you followed the instructions from Choosing the right functionality for your App Clip: To ensure a fast launch experience, App Clips must be small: If you make your App Clip available on devices running iOS 15 and earlier, the uncompressed App Clip binary can be up to 10 MB in size. If you make your App Clip available on devices running iOS 16 and later, the uncompressed App Clip binary can be up to 15 MB in size. If you make your App Clip available on devices running iOS 17 and later, the uncompressed App Clip binary can be up to 50 MB in size if it meets the following conditions: The App Clip only supports digital invocations — for example, from your website or Spotlight search — and not from physical invocations like App Clip Codes, QR codes, or NFC tags People use your App Clip in situations where a reliable interne
Topic: UI Frameworks SubTopic: General Tags:
Aug ’24
Reply to Can't install app to iPad when Required Device Capability has NFC?
It is possible to have a single binary that installs on both. If you want the app to also run on devices with no NFC, the solution is to use weak linking, so the system does not attempt to load the NFC framework/libraries. What you need to do is weak link the CoreNFC framework manually in project settings, and then avoid using it if the app is not running on a supported device (check for iPad). To do this, you need to do the following: in your project Build Phases, the Link Binary With Libraries” section, add the CoreNFC.framework, and then mark it as Optional. This will prevent the app from crashing at launch. the next thing you need to handle is to avoid problematic behavior at App Review or in case a user installs the app on an iPad. For that, you could do a check of the UIDevice.current.model value and not engage any features of your app that would require the use of CoreNFC features. Keep in mind, that App Review will require the app to have some adequate functionality, while not using
Topic: App & System Services SubTopic: General Tags:
Aug ’24
Can't install app to iPad when Required Device Capability has NFC?
Hello Is it impossible to install an app to both iPhone and iPad when the app use NFC? The app, I'm working on, use NFC on iPhone but not on iPad. The app program code checks iPhone or iPad and use NFC only on iPhone. However, TestFlight and App Store show No Compatible Hardware on iPad and can't download. It works as expected on iPhone. Target Device is set both iPhone and iPad, the configuration is TARGETED_DEVICE_FAMILY = 1,2 According to Required Device Capabilities, iPad doesn't support NFC https://developer.apple.com/support/required-device-capabilities/#ipad-devices The app has UIRequiredDeviceCapabilities = nfc configuration only for iPhone. But is it block installing to iPad? If so how to fix this issue? Thanks in advance.
3
0
804
Aug ’24
Reply to Apple's NFC policy concerns?
Unfortunately this is a very open ended question which is difficult to answer here without understanding what it is you are trying to accomplish. There are many factors and policy differences based on what you are implementing, for what purpose, and in what locations. In any case, to implement NFC payment functionalities, you will need specific entitlements from Apple. When applying for them, you will be able to explain in detail your product plan and any details, and if you are approved, at that point any policies with regards to your implementation will become clear.
Jul ’24
Need Help in Implementing NFC HCE on iOS Outside EEA
I am developing an app and having trouble implementing NFC HCE functionality on iOS. From what I found, NFC HCE seems possible in the EEA, but I need help doing it in other countries. Is there any way to achieve this through a specific license or certification from Apple? Any guidance or references would be greatly appreciated.
1
0
858
Jul ’24
Is NFC HCE functionality supported? If so, how can it be implemented?
I am currently developing an app and facing challenges with implementing NFC HCE functionality on iOS. From my research, it seems that NFC HCE is achievable within the EEA, but I need guidance on implementing it for other countries. Has anyone successfully implemented NFC HCE outside the EEA? What steps or workarounds are available for this feature in regions like US or other countries? Additionally, is there any possibility of achieving this through a license or certification from Apple? Any guidance or references would be greatly appreciated.
2
0
951
Jul ’24
Is NFC HCE functionality supported in India? If so, how can it be implemented?
I am currently developing an app and facing challenges with implementing NFC HCE functionality on iOS. From my research, it seems that NFC HCE is achievable within the EEA, but I need guidance on implementing it for other countries. Has anyone successfully implemented NFC HCE outside the EEA? What steps or workarounds are available for this feature in regions like US or other countries? Additionally, is there any possibility of achieving this through a license or certification from Apple? Any guidance or references would be greatly appreciated.
0
0
426
Jul ’24
Apple wallet NFC pass with personalization
We now want to take this a step further adding Rewards Enrollment via the terminal. So scenario is: customer pays with apple pay on adyen terminal we check if the customer has the NFC pass in the wallet if so, they earn points (regular flow which is working) if not, wallet asks if you want to onboard into the program. We use personalization.json for for this and a webservice from us We have everything setup, but the personalization isn’t working. We follow all these steps: https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/PassKit_PG/PassPersonalization.html The issue is that we never receive a POST request from wallet on the /personalize route we needed to set up. It simply never triggers. We tried to do it manually from wallet using the ‘Add Personal Info’ button that appears now (because we added personalization.json to the pkpass bundle), but this triggers a message ‘Unable to personalise pass’, while it should show the personalization fields with our logo on top.
3
0
657
Jul ’24