Method: Pod::Specification::DSL#vendored_frameworks=

Defined in:
lib/cocoapods-core/specification/dsl.rb

#vendored_frameworks=(*frameworks) ⇒ Object

The paths of the framework bundles that come shipped with the Pod. Supports both .framework and .xcframework bundles. The frameworks will be made available to the Pod and to the consumers of the pod.

Examples:


spec.ios.vendored_frameworks = 'Frameworks/MyFramework.framework'

spec.vendored_frameworks = 'MyFramework.framework', 'TheirFramework.xcframework'

Parameters:

  • vendored_frameworks (String, Array<String>)

    A list of framework bundles paths.



1334
1335
1336
1337
# File 'lib/cocoapods-core/specification/dsl.rb', line 1334

attribute :vendored_frameworks,
:container => Array,
:file_patterns => true,
:singularize => true