Sha256: e12e735fff9c11629416eb54a54066e6cab265c413340ac89531709985e3160b

Contents?: true

Size: 803 Bytes

Versions: 4

Compression:

Stored size: 803 Bytes

Contents


platform :ios, '10.0'

inhibit_all_warnings!
use_modular_headers!
use_frameworks! :linkage => :static


#pod_install hook
post_install do |installer|

  # 单个target编辑配置
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      #config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'

      config.build_settings['PRODUCT_BUNDLE_IDENTIFIER'] = "org.cocoapods.${PRODUCT_NAME}"
      config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
      config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
      config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
    end
  end

end

target '${POD_NAME}_Example' do
  pod '${POD_NAME}', :path => '../'

  target '${POD_NAME}_Tests' do
    inherit! :search_paths

    ${INCLUDED_PODS}
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
ykioscmd-0.6.7 lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile
ykioscmd-0.6.6 lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile
yk_command-0.6.5 lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile
yk_command-0.6.4 lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile