You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey @fernandomatal, I think I just upgraded to Moya-ObjectMapper (2.7) and made sure it is compiled with Swift 4.2.
Here's my podfile script :
# store all pods that need to be compiled with specific Swift version
swift_42_pods = %w(Moya-ObjectMapper)
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if swift_42_pods.include? target.to_s
# add the build settings to the target config
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end
Hi,
I upgraded to latest Moya / RxSwift :
And I got this error using new rx syntax :
"Value of type 'PrimitiveSequence<SingleTrait, Response>' has no member 'mapObject'"
Here's my request code :
The text was updated successfully, but these errors were encountered: