質問編集履歴

1

Podfileを記載しました

2018/07/27 10:08

投稿

todaka
todaka

スコア11

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,45 @@
35
35
  }
36
36
 
37
37
  ```
38
+
39
+
40
+
41
+ 追記
42
+
43
+ 因みにyoutubeでFirebase3でのチュートリアルを見て行いました
44
+
45
+ 下記がPodfileです。
46
+
47
+ ```
48
+
49
+ # Uncomment the next line to define a global platform for your project
50
+
51
+ # platform :ios,'9.0'
52
+
53
+
54
+
55
+
56
+
57
+ target 'gameofChats' do
58
+
59
+ # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
60
+
61
+ use_frameworks!
62
+
63
+
64
+
65
+ # Pods for gameofChats
66
+
67
+
68
+
69
+ pod 'Firebase/Database'
70
+
71
+ pod 'Firebase/Auth'
72
+
73
+ pod 'Firebase/Storage'
74
+
75
+
76
+
77
+ end
78
+
79
+ ```