LoginSignup
26
25

More than 5 years have passed since last update.

Acknowledgements.plist の消失

Posted at

cocoapods 0.34 にするといなくなるらしい。

それはいいとして

https://github.com/CocoaPods/CocoaPods/wiki/Acknowledgements#ios-setting-bundle からコピペした

post_install do | installer |
  require 'fileutils'
  FileUtils.cp_r('Pods/Pods-Acknowledgements.plist', 'Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end

でエラーになる。

post_install do | installer |
  require 'fileutils'
  FileUtils.cp_r('Pods/Target Support Files/Pods/Pods-acknowledgements.plist', 'Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end

に置き換えるとエラーは防げる。

26
25
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
26
25