48
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

iOS その2Advent Calendar 2016

Day 13

新規Xcodeプロジェクトを作ったらやること

Last updated at Posted at 2016-12-12

記事の内容はこちらを参照してください。
https://mishimay.github.io/b34612242c3c1ced6aef/

ライブラリ導入

  • MUST: R.swift導入
    • CocoaPodsで (pod 'R.swift')
      • 設定方法は公式ページを参照のこと
    • Androidの R.java のようなファイルを生成してくれるツール
      • コードからマジックストリングを減らせる
  • SHOULD: Fabric (Crashlytics) 導入
    • CocoaPodsで (pod 'Fabric' pod 'Crashlytics')
      • 設定方法は公式ページを参照のこと
    • アプリのクラッシュ情報収集
  • SHOULD: Google Analytics 導入
    • CocoaPodsで (pod 'GoogleAnalytics')
      • 設定方法は公式ページを参照のこと

CI設定

  • SHOULD: CIサービスやJenkinsと連携
    • ビルドやテストをCIサーバ上で行えるようにする
    • Fastlaneのlaneを呼ぶようにすると便利
  • MAY: テストが通るまでプルリクエストをマージできないように設定

-->

48
37
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
48
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?