Skip to content

Using Adyen as a static framework

Joost van Dijk edited this page Nov 20, 2018 · 2 revisions

The recommended way to use Adyen is as a dynamic framework. For CocoaPods, this means using use_frameworks! in your Podfile. However, this is sometimes not an option because other pods might only be available as a static framework.

To prevent issues when using Adyen without use_frameworks!, add the following to your target's Other Linker Flags:

-force_load ${CONFIGURATION_BUILD_DIR}/Adyen/libAdyen.a
Clone this wiki locally