facebook twitter hatena line email

「Ios/swift/外部ライブラリ/Firebase」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==インストール== pod 'Firebase'」)
 
(インストール)
行1: 行1:
 
==インストール==
 
==インストール==
 
+
$ vi Podfile
pod 'Firebase'
+
platform :ios, '9.0'
 +
target 'Helloworld' do
 +
  use_frameworks!
 +
  pod 'Firebase'
 +
end
 +
$ pod install

2016年7月28日 (木) 23:02時点における版

インストール

$ vi Podfile
platform :ios, '9.0'
target 'Helloworld' do
 use_frameworks!
 pod 'Firebase'
end
$ pod install