LoginSignup
7
6

More than 5 years have passed since last update.

Xcode 7.3 betaでプラグインを使う方法

Last updated at Posted at 2016-01-12

Xcode 7.3 がリリースされましたね :)
https://developer.apple.com/xcode/download/

さて毎回困るのが、インストールする度にプラグインが動かなくなることです。

以下の方法で簡単に動くようになります。

1. DVTPlugInCompatibilityUUIDsを調べる

defaults read /Applications/Xcode-beta.app/Contents/Info DVTPlugInCompatibilityUUID
  • Xcode-beta.appとbetaバージョンを指定します
  • E71C2CFE-BFD8-4044-8F06-00AE685A406C と出力されると思います

2. 調べたDVTPlugInCompatibilityUUIDを追加する

find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults write FILE DVTPlugInCompatibilityUUIDs -array-add E71C2CFE-BFD8-4044-8F06-00AE685A406C

3. Xcodeを再起動する

プラグインを有効にするかポップアップが表示されるので、Load Bundleを選択する

これで無事にプラグインが使用できるようになると思います

7
6
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
7
6