I got an news app which fetches news online in XML format in stores it locally in the sqlite dbase.. which is perfect case for restkit.
However, I would like to also fetch xml data manually sometimes (ie and not want to store it in the dbase).. in other words i would like to request it directly with AFNetworking. I like how in AFNetworking 2.0 it does the parsing of xml automatically, and so I want to use that feature.
However, Restkit 2.0 is linked to AFNetworking 1.3.. and so If I add this to my podfile:
pod 'RestKit', '~> 0.21.0'
pod "AFNetworking", "~> 2.0"
and run a pod install
I get the following error:
[!] Unable to satisfy the following requirements:
- `AFNetworking (~> 1.3.0)` required by `RestKit/Network (0.21.0)`- `AFNetworking (~> 2.0)` required by `Podfile`
is there anyway around this?