質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,59 +1,45 @@
|
|
1
|
-
|
1
|
+
https://developer.apple.com/forums/thread/129088(の2つめの回答)に書いてあるシェルスクリプトを実行したいのですがやり方がわかりません。。
|
2
2
|
|
3
3
|
|
4
|
-
|
5
|
-
```ここに言語を入力
|
6
|
-
|
7
|
-
ITMS-90424: Invalid Swift Support - The SwiftSupport folder is empty. Rebuild your app using the current public (GM) version of Xcode and resubmit it.
|
8
|
-
|
9
|
-
```
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
検索すると同じ症状が結構あったので以下の内容の `2つ目` の回答の前半部分を確認してみたところ`Frameworksのフォルダの中身は存在`していました。
|
14
|
-
|
15
|
-
※全てのフォルダの中身を確認しています。
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
https://developer.apple.com/forums/thread/129088
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
そこで後半部分の `If your Frameworks folder was not empty, then try the following shell script (please check the path variables before running):`に書いてあるシェルスクリプトを実行したいです。
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
適当にテキストエディタにコピペしてtest.shなどで保存。
|
28
|
-
|
29
|
-
```
|
30
|
-
|
31
|
-
cd test.sh
|
32
|
-
|
33
|
-
sh test.sh
|
34
|
-
|
35
|
-
```
|
36
|
-
|
37
|
-
しても
|
38
|
-
|
39
|
-
```
|
40
|
-
|
41
|
-
+ Adding SWIFT support (if necessary)
|
42
|
-
|
43
|
-
```
|
44
|
-
|
45
|
-
しか返ってきません。
|
46
|
-
|
47
|
-
どうすれば https://developer.apple.com/forums/thread/129088に書いてあるシェルスクリプトを実行して確認することが出来るのでしょうか。
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
アプリは完成しているのですがリリースまでの手前でつまづいています。
|
52
|
-
|
53
|
-
他のアプリは問題なくリリースできたのですが...
|
54
4
|
|
55
5
|
詳しい方よろしくお願いします。
|
56
6
|
|
57
7
|
|
58
8
|
|
9
|
+
```
|
10
|
+
|
11
|
+
// test.sh
|
12
|
+
|
13
|
+
XCARCHIVE_PATH="/Users/<user>/Library/Developer/Xcode/Archives/<Put .xcarchive path here>"
|
14
|
+
|
15
|
+
APP="/Users/<user>/Library/Developer/Xcode/Archives/<Put path to .app inside .xcarchive here"
|
16
|
+
|
17
|
+
DEVELOPER_DIR=`xcode-select --print-path`
|
18
|
+
|
19
|
+
if [ ! -d "${DEVELOPER_DIR}" ]; then
|
20
|
+
|
21
|
+
echo "No developer directory found!"
|
22
|
+
|
23
|
+
exit 1
|
24
|
+
|
25
|
+
fi
|
26
|
+
|
27
|
+
echo "+ Adding SWIFT support (if necessary)"
|
28
|
+
|
59
|
-
|
29
|
+
if [ -d "${APP}/Frameworks" ];
|
30
|
+
|
31
|
+
then
|
32
|
+
|
33
|
+
mkdir -p "${TEMP_IPA_BUILT}/SwiftSupport"
|
34
|
+
|
35
|
+
for SWIFT_LIB in $(ls -1 "${APP}/Frameworks/"); do
|
36
|
+
|
37
|
+
echo "Copying ${SWIFT_LIB}"
|
38
|
+
|
39
|
+
cp "${DEVELOPER_DIR}/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/${SWIFT_LIB}" "${XCARCHIVE_PATH}/SwiftSupport"
|
40
|
+
|
41
|
+
done
|
42
|
+
|
43
|
+
fi
|
44
|
+
|
45
|
+
```
|