Closed
Description
CocoaPods : 1.6.1
Xcode : 10.1 (10B61)
cocoapods-binary : 0.4.3
Podfile:
source 'https://github.com/CocoaPods/Specs.git'
plugin 'cocoapods-binary'
platform :ios, '11.2'
use_frameworks!
inhibit_all_warnings!
target 'AnimalHouse' do
# RxSwift
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
# Firebase
pod 'Firebase/Core', :binary => true
pod 'Firebase/Firestore', :binary => true
pod 'Firebase/Auth', :binary => true
pod 'CodableFirebase'
end
target 'AnimalHouseFirestoreContractTests' do
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxBlocking'
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'CodableFirebase'
end
target 'AnimalHouseHttpContractTests' do
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxBlocking'
end
target 'RoadTripTests' do
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'RxTest'
pod 'RxBlocking'
end
target 'AnimalHouseTestsHostApplication' do
end
target 'AnimalHouseFirestoreContractTestsHostApplication' do
end
The following app has two test targets running on separate host apps called AnimalHouseTestsHostApplication
and AnimalHouseFirestoreContractTestsHostApplication
. I get the following error when running pod install
:
[!] Binary doesn't support pods who integrate in 2 or more platforms simultaneously: ["Firebase"]