skip to Main Content

I imported BitcoinKit.swift which worked fine but get now the error:

Could not find module 'RxSwift' for target 'x86_64-apple-ios-simulator'; found: arm64, arm64-apple-ios-simulator

Podfile:

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '15.2'

target 'BTCTransaction5' do

  use_frameworks!

  pod 'BitcoinKit.swift'

end

System

macOS Big Sur

M1

Thanks for Help!

2

Answers


  1. Chosen as BEST ANSWER

    I fixed it by excluding some architectures in the Build Settings.


  2. Did you try to update the pod with this?

    arch -x86_64 pod update   
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search