Closed acecilia closed 5 years ago
Thanks for reporting this 👍 I was able to reconstruct this, and actually, Accio doesn't detect if a framework is required by multiple frameworks. This can probably be easily fixed by using a Set
here:
It's correct that this is the case and I never thought this would be a problem since there's always at least a local caching in place which will skip the rendering. I just didn't go the extra mile since I didn't see much benefit in it, but you guys seem to do, so let me review #53 and merge it. Thanks, @fredpi!
Hi,
When I set
RxCocoa
as a dependency (version 5.0.1) I see that Accio attempts to buildRxSwift
twice. From the logs:Seems like this is because
RxCocoa
depends onRxSwift
andRxRelay
, andRxRelay
depends onRxSwift
. Is this intended behaviour? Shouldn't Accio, after dependency resolution, only attempt to build the necessary dependencies once?Thanks, Andres