質問編集履歴
1
Podfileのコードの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,10 +33,30 @@
|
|
33
33
|
|
34
34
|
}
|
35
35
|
|
36
|
+
Podfileのコード
|
37
|
+
# Uncomment the next line to define a global platform for your project
|
38
|
+
platform :ios, '9.0'
|
36
39
|
|
40
|
+
target 'Weblio' do
|
41
|
+
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
37
|
-
|
42
|
+
use_frameworks!
|
38
|
-
|
43
|
+
pod 'Kanna'
|
39
44
|
|
45
|
+
# Pods for Weblio
|
46
|
+
|
47
|
+
target 'WeblioTests' do
|
48
|
+
inherit! :search_paths
|
49
|
+
# Pods for testing
|
50
|
+
end
|
51
|
+
|
52
|
+
target 'WeblioUITests' do
|
53
|
+
inherit! :search_paths
|
54
|
+
# Pods for testing
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
|
40
60
|
### 試したこと
|
41
61
|
CocoaPodsでライブラリをインストールしたりSwift Package Managerを使ってみたり...
|
42
62
|
|