facebook twitter hatena line email

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

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

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

インストール

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