3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【解決済み】SWIFT_VERSION '5.0' is unsupported, supported versions are: 3.0, 4.0, 4.2の対処法

Posted at

解決方法

まず最初に書いておきます。

podを選択
スクリーンショット 2020-01-07 17.56.16.png

ライブラリを選択して、Swift Language Versionを4.2に選択
スクリーンショット 2020-01-07 17.56.34.png

完了
スクリーンショット 2020-01-07 17.56.47.png

説明

pod init
target "aaa" do

  use_frameworks!

  pod "Alamofire"
  pod "SwiftyJSON"
  pod "NVActivityIndicatorView"

end
pod install

ここでインストールしたライブラリの数だけエラーが出ます。エラー内容が

SWIFT_VERSION '5.0' is unsupported, supported versions are: 3.0, 4.0, 4.2

こんな感じ。

書いてあることは5.0はサポートされてないよー。3.0, 4.0, 4.2のどれかにしてねーって言ってます。

swift --version

でswiftのバージョンを調べてみても

swift --version
Apple Swift version 4.2.1 (swiftlang-1000.11.42 clang-1000.11.45.1)
Target: x86_64-apple-darwin17.7.0

と出てきます。

XcodeとSwiftのバージョンが悪いのかなと考えていたのですが、答え見つけました。

英語読めてよかったーーー!

まとめ

初心者はエラーに弱いですが、頑張ってググれば出てきます。頑張りましょう!

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?