Search code examples
iosswiftxcodealamofire

Tons of issues with Alamofire when compiling xcode project


I was running my program softly and at some point (maybe closed the Xcode to reopen or updated pod file) it suddenly it can't compile anymore.

I already tried opening .xcodeproj and .xcworkspace. The first one shows this message when compiling:

xcodeproj

The second case shows tons of issues:

xcworkspace

This is my pod file:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

source 'https://github.com/CocoaPods/Specs.git'

target 'HonoluluArt' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks



  # Pods for HonoluluArt
    source 'https://github.com/CocoaPods/Specs.git'
    platform :ios, '8.0'
    use_frameworks!

    pod 'Alamofire', '~> 3.0'

    pod 'GoogleMaps'
    pod 'GooglePlaces'
end

Can I get any help? Thanks a lot!


Solution

  • I just removed any reference to Alamofire. Pod file, imports, paths and stuff and it worked. I'm trying to manage the code once it is removed, but worked.

    Thanks anyway!