Native 3DS via Netcetera applies to both payment and enrollment flows.
Native 3DS is opt-in: you only need to install the module if your integration runs 3DS challenges in-app. If you are not enabling 3DS, you can skip this guide.
This is a separate module, so you only add it if you need native 3DS. If your app already customizes the Yuno SDK’s styles, those styles propagate automatically to the challenge screen, no additional UI configuration is needed.
Requirements
- iOS 14.0 or higher.
- YunoSDK 2.25.0 or higher already installed in your app.
- The
Yuno3DSNetceteramodule, version 3.0.0 or higher, installed via Swift Package Manager or CocoaPods (see below).
Installation
- Swift Package Manager
- CocoaPods
The module ships in the same package as the Yuno SDK. In Xcode go to File > Add Package Dependencies…, add:choose Up to Next Major Version from
2.25.0, and tick the Yuno3DSNetcetera product next to YunoSDK. The Netcetera ThreeDS_SDK binary is resolved automatically from Netcetera’s repository.Activating the 3DS provider
- Swift Package Manager
- CocoaPods
The provider auto-registers when the framework loads. No extra code is required:
Sandbox certificate
When testing against the Yuno sandbox environment, the Netcetera SDK requires a Visa test root certificate (acq-root-certeq-prev-environment.crt) to be present in your app’s main bundle.
Contact your Yuno TAM (Technical Account Manager) to obtain the certificate. It is not distributed publicly.
1
Add to Xcode
Drag it into Xcode’s Project Navigator inside your app target’s group.
2
Select target
Check Add to targets and tick your app target.
3
Verify bundle resources
Verify it appears under Target → Build Phases → Copy Bundle Resources.
In production environments this certificate is not used and can be omitted from Release builds.
Troubleshooting
Linker error mentioning YunoThreeDSRegistry
Linker error mentioning YunoThreeDSRegistry
Your
YunoSDK is older than the version this module requires. Bump it to >= 2.25.0.3DS challenge UI never appears (CocoaPods)
3DS challenge UI never appears (CocoaPods)
You forgot to call
Yuno3DSNetcetera.register() before Yuno.initialize(...).Console: acq-root-certeq-prev-environment.crt not found
Console: acq-root-certeq-prev-environment.crt not found
Only relevant in sandbox. Add the certificate to your app bundle (see Sandbox certificate). Safe to ignore in production.