Guest User

Untitled

a guest
Oct 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. post_install do |installer|
  2. installer.pods_project.targets.each do |target|
  3. puts target.name
  4. target.build_configurations.each do |config|
  5. next unless config.name == 'Debug'
  6. puts config.name
  7. puts config.build_settings['LD_RUNPATH_SEARCH_PATHS']
  8. puts "------------\n"
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment