0
0

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.

Firebaseの設定ファイルを環境ごと(DEV/STG/PRO)で分けたいマン

Posted at

概要

タイトルに全て書いてしまったが、FirebaseやらAPIの接続先とかをDEV/STG/PRO環境で別々にしたかったので調べたメモ

設定周り

今回このような形で分けられるように設定
この手の設定はぐぐると古い記事が出てきてしまうのだが、Xcode8以降はActive Compilation Conditionsに設定するのが正解
image.png

        #if DEBUG
            let fileName = "GoogleService-Info-dev"
        #elseif STAGING
            let fileName = "GoogleService-Info-stg"
        #else
            let fileName = "GoogleService-Info"
        #endif

        let filePath = Bundle.main.path(forResource: fileName, ofType: "plist")
        let fileopts = FirebaseOptions(contentsOfFile: filePath!)
        FirebaseApp.configure(options: fileopts!)

おまけ

Staging向けの設定は、プロジェクトの下記debugから複製で作成した
image.png

現状これ動いてるのか謎なんですが、変に動かれても気持ち悪いので変えておいた
image.png

ちなみにnew schemaからこんな感じに環境ごとに設定をわけてるマン
image.png

APIの場合はbaseURLを環境ごとに切り替える感じでやってます。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?