A file with this information is actually generated by CocoaPods by default. This file is created under Pods/Target Support Files/Pods/Pods-Acknowledgements.plist . You can then add the post_install hook to your Podfile to copy it to where you can use it. Here is an official example:
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
Read it all on the wiki page.
source share