Results 42 comments of Ryan Holden

I get this too on XCode 12.0

Seems to be same issue as here: https://developer.apple.com/forums/thread/697832 Looking for a solution..

+1 for better docs. The [current docs](https://square.github.io/retrofit/) doesn't mention the `@Body` annotation even exists. Had to use StackOverflow and some poorly written blog posts to figure out how to send...

Hi @dennisdoomen I'm glad to find this thread and see our team wasn't the only one running into this. Also glad to see a willingness to add it and support...

Hi, perhaps that callback is not on the main thread? To properly update the UI it must be done on the main thread. ``` progress:^(NSProgress * _Nonnull downloadProgress) {[weak self]...

I also ran into this issue, to fix I did this for my podfile: ``` pod 'DownloadButton', git: 'https://github.com/PavelKatunin/DownloadButton.git', branch: 'master' ```

This is addressed in PR #17 See: https://github.com/PavelKatunin/DownloadButton/pull/17/files#diff-3ad36d91b66ed5d3501db1cd749c212cR121

Merging PR #290 would address this..

Thank you! Hoping this get merged and released via cocoapods soon!