Evgeniy

Results 30 comments of Evgeniy

App -- MyLib 1 -- -- External Lib 1 How to config this plugin for this case?

No, it's an internal library for my App.

My App has lots of internal libs. So I need to make aars for it to speed up development.

It'll be perfect to have just one line added to Podfile and all stuff from the "Xcode integration" sections will be done automatically by the Cocoapods installer script. Does it...

@gigisommo here it is ``` final class Foo { private let queue: OperationQueue = { let queue = OperationQueue() queue.maxConcurrentOperationCount = 1 return queue }() func sendAsync() { queue.addOperation {...

You need to create as many threads as possible ``` final class Foo { private let queue: OperationQueue = { let queue = OperationQueue() queue.maxConcurrentOperationCount = 100 return queue }()...