Available modules
Installation
- Swift Package Manager
- CocoaPods
2.25.0, and in the product list tick YunoSDK plus the modules you need (YunoAntifraudClearsale, YunoAntifraudKoin, Yuno3DSNetcetera). Nothing else is required: each product brings its own vendor binary.Activating a module
How a module registers itself with the Yuno SDK depends on how you installed it.- Swift Package Manager
- CocoaPods
Troubleshooting
The module is installed but nothing changes (CocoaPods)
The module is installed but nothing changes (CocoaPods)
register() before Yuno.initialize(...).pod install: required a higher minimum deployment target
pod install: required a higher minimum deployment target
platform line in your Podfile is below the module’s minimum. Use platform :ios, '14.0' for the antifraud and 3DS modules, or '15.0' if you add YunoRevolutPay.pod install: CocoaPods could not find compatible versions for pod YunoSDK
pod install: CocoaPods could not find compatible versions for pod YunoSDK
YunoSDK ~> 2.25. If your Podfile pins an older SDK (for example '2.24.1'), relax it to '~> 2.25'.pod install: CocoaPods could not find compatible versions for pod RevolutPayments
pod install: CocoaPods could not find compatible versions for pod RevolutPayments
YunoRevolutPay requires RevolutPayments/RevolutPay ~> 3.16.0. If your Podfile pins another version of RevolutPayments, align it to '~> 3.16.0' or remove the pin and let YunoRevolutPay bring it.pod install: SDK does not contain 'libarclite' (YunoRevolutPay)
pod install: SDK does not contain 'libarclite' (YunoRevolutPay)
post_install hook shown in the CocoaPods tab above so every pod target builds for iOS 15.0.Revolut Pay never completes after coming back to the app
Revolut Pay never completes after coming back to the app
Yuno.receiveDeeplink(url), and that a guard on the scheme is not dropping the Revolut Pay return URL (yourscheme://revolut-pay).Swift Package Manager: no such module 'CSBehavior' when importing YunoAntifraudClearsale
Swift Package Manager: no such module 'CSBehavior' when importing YunoAntifraudClearsale
YunoAntifraudClearsale 1.0.0 only. The module registers itself, so you do not need to import it from Swift: remove the import YunoAntifraudClearsale line and the project builds.