LoginSignup
3
4

More than 5 years have passed since last update.

Fabric 1.7.2 以降の Run Script の Path の変更

Last updated at Posted at 2017-11-04

前提

- Xcode 9.1
- Swift 4.0.2
- CocoaPods 1.3.1
- Fabric 1.7.2

警告メッセージ

The run script is now located at '${PODS_ROOT}/Fabric/run'. To remove this warning, update your Run Script Build Phase to point to this new location.

実行スクリプトは '$ {PODS_ROOT} / Fabric / run'にあります。 この警告を削除するには、Run Script Build Phase をこの新しい Path を指すように更新してください。

設定

Xcode > TARGETS > Build Phases > Run Script を 以下のように修正

- shellScript = "./Pods/Fabric/Fabric.framework/run xxx;
+ shellScript = "./Pods/Fabric/run xxx;

command + b して warning が消えていれば修正完了です!

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4