Я использовал Bigint
версию 4.0. Но он попытался обновить версию до 5.0, потому что дал мне предупреждающее сообщение.
Но это показывает мне ошибку.
$ pod install
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "BigInt":
In Podfile:
BigInt (~> 5.0)
web3.swift.pod (~> 2.2.0) was resolved to 2.2.0, which depends on
BigInt (~> 3.1)
мой Podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
target 'myapp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for DeleteMe
pod 'BigInt', '~> 5.0'
pod 'CryptoSwift'
pod 'RealmSwift'
pod 'web3.swift.pod', '~> 2.2.0'
end
Что такоепроблема, и как я могу решить ее?