Home > database >  Alamofire DataRequest has no serializingDecodable
Alamofire DataRequest has no serializingDecodable

Time:06-29

I trying alamofire concurrency async/await calls but it seems some methods is not available especially serializingDecodable. I am using alamofire 5.6

https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#using-alamofire-with-swift-concurrency

Also any concrete example to use alamofire concurrency on a iOS swiftui app? thanks

CodePudding user response:

If you don't have serializingDecodable, you may not be using the required version of Xcode, 13.3 . Older versions of Xcode won't show the concurrency APIs at all.

  • Related