LoginSignup
3
5

More than 5 years have passed since last update.

Xcodeのバージョンを上げた時に動かなくなってしまったプラグインを再設定する方法

Last updated at Posted at 2016-03-30

Xcode7.3がリリースされ、以前まで動いていたプラグインが動かなくなりました。

以下解決方法になります。

手順

DVTPlugInCompatibilityUUIDを取得

1.ターミナルで以下を実行

defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID

2.出てきたUUIDを追加

find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults write FILE DVTPlugInCompatibilityUUIDs -array-add "1.で取得したUUID"

3.Xcodeを再起動してLoadBundleを選択

これで、以前まで使えていたプラグインが動作するようになります。

3
5
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
5