class Pod::Installer::Xcode::PodsProjectGenerator::PodTargetInstaller

Starting from CocoaPods 1.10.0 and later resources are no longer copied inside the .framework when building static frameworks. While this is correct when using CP normally, for redistributable frameworks we require resources to be shipped along the binary

Public Instance Methods

add_files_to_build_phases(native_target, test_native_targets, app_native_targets) click to toggle source
# File lib/pod_builder/install.rb, line 80
def add_files_to_build_phases(native_target, test_native_targets, app_native_targets)
  target.mock_dynamic_framework = target.build_as_static_framework?
  swz_add_files_to_build_phases(native_target, test_native_targets, app_native_targets)
  target.mock_dynamic_framework = false
end
swz_add_files_to_build_phases(native_target, test_native_targets, app_native_targets)