Hi @dmitry-blackwave ,

I was getting the above error when i did your installation steps and these were my Adyen Pods that got installed,
Installing Adyen 2.8.1
Installing Adyen3DS2 (0.9.6)
Installing AdyenInternal 2.8.1
Using AdyenReactNative (1.2.0)
My Pod File,
`
platform :ios, '11.0'
use_frameworks!
target 'fermynt' do
pod 'AdyenReactNative', :path => '../node_modules/adyen-react-native'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Adyen'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end
`
But it didn't workout,so I did the manual linking as below and that too didn't work,


Could not find module Adyen for arm64 architecture
Compile Time Error.
Hi @dmitry-blackwave ,
I was getting the above error when i did your installation steps and these were my Adyen Pods that got installed,
Installing Adyen 2.8.1
Installing Adyen3DS2 (0.9.6)
Installing AdyenInternal 2.8.1
Using AdyenReactNative (1.2.0)
My Pod File,
`
platform :ios, '11.0'
use_frameworks!
target 'fermynt' do
pod 'AdyenReactNative', :path => '../node_modules/adyen-react-native'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Adyen'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end
`
But it didn't workout,so I did the manual linking as below and that too didn't work,
Could not find module Adyen for arm64 architecture
Compile Time Error.