LoginSignup
16
16

More than 5 years have passed since last update.

XCode7.1に更新したところ、ParseでInclude of non-modular header inside frameworkのエラーが起きた

Last updated at Posted at 2015-10-25

下記コードをPodfileに追加後、pod installで解決した。

Podfile
post_install do |installer|
  `find Pods -regex 'Pods/Parse.*\\.h' -print0 | xargs -0 sed -i '' 's/\\(<\\)Parse\\/\\(.*\\)\\(>\\)/\\"\\2\\"/'`
end

CocoaPodsのissueでもGoogleMapsやGoogleMobileAdsなどで、同様の問題が起きていることが報告されています。
XCode 7.1 - Include of non-modular header inside framework #4420

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