I am using CocoaPods for my application.
One of the modules is written in Swift, so my subfile looks like this.
platform :ios, "8.0" use_frameworks! target "ossTest" do pod 'Charts', "~> 2.0" pod "Color-Picker-for-iOS", "~> 2.0" end post_install do | installer | require 'fileutils' FileUtils.cp_r('Pods/Target Support Files/Pods/Pods-Acknowledgements.plist', 'ossTest/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
When I run pod install , an error message appears:
[!] An error occurred while processing the post-install hook of the Podfile. unknown file type: Pods/Target Support Files/Pods/Pods-Acknowledgements.plist
Of course, I prepared Set.bundle and inside the package, I created an empty Acknowledgement.plist and changed root.plist before the proposed setup.
My version of CocoaPods is 0.39.0.
How can I solve this error?
ios cocoapods
Masaru kitajima
source share