質問編集履歴
2
内容の修正
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
podfileの中身です
|
|
14
14
|
```
|
|
15
15
|
# Uncomment the next line to define a global platform for your project
|
|
16
|
-
|
|
16
|
+
platform :ios, '11.2'
|
|
17
17
|
|
|
18
18
|
target 'my_app' do
|
|
19
19
|
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
1
podfileの内容を追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -6,4 +6,34 @@
|
|
|
6
6
|
```
|
|
7
7
|
という警告文が出て来たので指示通りに BuildSettings の Always embed swift standard libraries の項目に $(inherited) を追記し再び pod install したのですが、また同じ警告が出て来ました。どうしたら警告が消えるでしょうか?
|
|
8
8
|
|
|
9
|
-
また、導入したライブラリをインポートしようとすると No such module のエラーが出るのですがこれは上記の警告と関係はあるでしょうか?
|
|
9
|
+
また、導入したライブラリをインポートしようとすると No such module のエラーが出るのですがこれは上記の警告と関係はあるでしょうか?
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
podfileの中身です
|
|
14
|
+
```
|
|
15
|
+
# Uncomment the next line to define a global platform for your project
|
|
16
|
+
# platform :ios, '11.2'
|
|
17
|
+
|
|
18
|
+
target 'my_app' do
|
|
19
|
+
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
|
20
|
+
use_frameworks!
|
|
21
|
+
|
|
22
|
+
# Pods for my_app
|
|
23
|
+
|
|
24
|
+
target 'my_app' do
|
|
25
|
+
inherit! :search_paths
|
|
26
|
+
|
|
27
|
+
pod 'NCMB', :git => 'https://github.com/NIFCloud-mbaas/ncmb_ios.git'
|
|
28
|
+
pod 'Eureka'
|
|
29
|
+
pod 'SCLAlertView'
|
|
30
|
+
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
target 'my_app' do
|
|
34
|
+
inherit! :search_paths
|
|
35
|
+
# Pods for testing
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
end
|
|
39
|
+
```
|