2019-04-12-18-AddAcknowledgement

Your Podfile should look like this.

platform :ios, '10.0'

def common_pods
  pod 'your'
  pod 'pods'
  pod 'here'
end

target 'yourAppTarget' do
  use_frameworks!
  common_pods
end

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

Your Settings bundle should have an entry for Acknowledgements. Here is an example.

Last updated

Was this helpful?