Fernando

Results 30 comments of Fernando

Thanks @tcamin . I've updated my dependency to point at `985d63ec9a6080aeacbc2ca9d76b86cf2cea189e` but unfortunately I still see the same issue. What is it that you tweaked?

> Same issue as in `getting UUID` or `empty body`? Getting UUID

hey same issue on `e5c0f7f4bd343627e55aecc39b76c39b32c8b444`, I'm getting a `UUID`: ``` (lldb) po _originalRequest.HTTPBody E8A5F5B2-65EF-432D-B7C4-F26E44E8DFA3 ```

this is working @AhmedAshraf605 , thanks for the contribution 🙌 @tcamin will you cut a new version soon?

> Modifying that queue would likely lead to thread-safety issues `startLoading` is already called in a different thread than it's then dispatching the response (in the main queue now) so...

@tcamin from what I see, it's really easy to enter a deadlock (see [here](https://stackoverflow.com/questions/62605957/ios-runloop-and-dispatchqueue-main-async#answer-62606182)), which I think it's my case and it's not something very difficult to achieve. I still...

Hi @houmie , where are you getting the error you describe? ``` ld: framework not found AdColony ``` I'm assuming you're importing `AdColony` and the compiler gives you a shout...

@houmie the error displays `Debug-maccatalyst`, that means you're compiling for `macOS` and yet, `#if iOS` resolves true and tries to `import` the framework. `macCatalyst` used iOS SDK under the hood...

@houmie I've prepared a branch where I've added the problematic dependencies to my `Sample` project, you can find it here: https://github.com/fermoya/cocoapods-catalyst-support/tree/fix/issue-36/Sample Can you please download that code and let me...

Hi @geniomar , I've explored the option of using homebrew taps. Nonetheless, this isn't a priority at the moment as it would requires other tasks first. Feel free to open...