質問編集履歴
1
ライブラリの導入方法について追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,6 +64,76 @@
|
|
64
64
|
|
65
65
|
|
66
66
|
|
67
|
+
# ライブラリの導入方法について
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
ライブラリはcocoapodsを用いて導入しました。
|
72
|
+
|
73
|
+
Podfile内の記載は下記の通りです。
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
# Uncomment the next line to define a global platform for your project
|
80
|
+
|
81
|
+
# platform :ios, '9.0'
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
target 'XX' do
|
86
|
+
|
87
|
+
# Comment the next line if you don't want to use dynamic frameworks
|
88
|
+
|
89
|
+
use_frameworks!
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
# Pods for PushSample
|
94
|
+
|
95
|
+
# add the Firebase pod for Google Analytics
|
96
|
+
|
97
|
+
pod 'Firebase/Analytics'
|
98
|
+
|
99
|
+
# add pods for any other desired Firebase products
|
100
|
+
|
101
|
+
# https://firebase.google.com/docs/ios/setup#available-pods
|
102
|
+
|
103
|
+
# Add the pod for Firebase Cloud Messaging
|
104
|
+
|
105
|
+
pod 'Firebase/Messaging'
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
target 'XXTests' do
|
110
|
+
|
111
|
+
inherit! :search_paths
|
112
|
+
|
113
|
+
# Pods for testing
|
114
|
+
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
target 'XXUITests' do
|
120
|
+
|
121
|
+
# Pods for testing
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
end
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
```
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
|
67
137
|
# 調べたこと
|
68
138
|
|
69
139
|
importに不足がないか確認しましたが、参考サイトと同じように下記をimportしているため差分は見受けられませんでした。
|