1

Currently i'm using Alamofire-3.4.1 with swift 2.1.1 and Xcode 7.2.1 version. It showing error i.e 'No such module Alamofire'. My OS X Yosemite version is 10.10.5. Is it compatibility issue or other? Which version of Alamofire should i use?

Patrick
  • 1,629
  • 5
  • 23
  • 44
Chetan Lodhi
  • 353
  • 1
  • 3
  • 21
  • 1
    Possible duplicate of [Cannot install Alamofire in new Xcode Project. "No Such module Alamofire"](http://stackoverflow.com/questions/25817479/cannot-install-alamofire-in-new-xcode-project-no-such-module-alamofire) – Patrick Jun 21 '16 at 07:02
  • 1
    Alamofire 3.4.1 uses swift 2.2 which is not compatible with older Xcode's & swift 2.1. use Xcode 7.3 or Alamofire 3.2.x. – srvv Jun 21 '16 at 07:10
  • Thanx for Reply @srvv... Alamofire is working with 3.2.x version. :) – Chetan Lodhi Jun 21 '16 at 08:25

1 Answers1

1

Alamofire 3.4.1 uses swift 2.2 which is not compatible with previous versions of swift & Xcode older than v7.3.

Either use Xcode 7.3 OR Alamofire 3.2.x which is the last version supporting swift 2.1.

For future reference, visit Alamofire releases on github. It provides detailed release notes with migration notes for any source breaking changes.

srvv
  • 613
  • 4
  • 10