1
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 5 years have passed since last update.

Xcodeの過去バージョンをダウンロード・ビルドするまで

Posted at

きっかけ

過去のSwiftバージョンでリリースをする必要があったため。

方法

  1. https://developer.apple.com/download/more/ にアクセス。
  2. 検索窓にてxcodeで検索し、プラスボタンからxipをDL。
    FireShot Capture 1 -  - https___developer.apple.com_download_more_#.png
  3. xipを展開。
  4. Xcode > Preference > Locations のCommand Line Toolsを過去バージョンに修正
    スクリーンショット 2017-10-11 17.35.03(2).png
  5. gitなどで過去バージョンのソースコードを取得。

❇︎ ここからはCarthageを導入しているプロジェクトのみ
6. Cartfile.resolvedにて、frameworkのバージョン指定をこれからビルドするSwiftバージョンに対応したバージョンへ変更する。
7. carthage bootstrap --platform iOSをコマンドラインから実行。


❇︎ ここからはCocoaPodsを導入しているプロジェクトのみ
8. Podfile.lockにて、frameworkのバージョン指定をこれからビルドするSwiftバージョンに対応したバージョンへ変更する。
9. pod installをコマンドラインから実行。


あとはclean → run

1
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
1
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?