Add use_frameworks! to the Podfile DSL, which allows to opt-in to integrate pods as frameworks.
Can appear on root level for all pods or in target definition level.
If there is an opt-in on root level, a target defintion can opt-out again by use_frameworks!(false).
This also applies if the default should change.
Regarding CocoaPods/CocoaPods#2878
Add
use_frameworks!to the Podfile DSL, which allows to opt-in to integrate pods as frameworks.Can appear on root level for all pods or in target definition level.
If there is an opt-in on root level, a target defintion can opt-out again by
use_frameworks!(false).This also applies if the default should change.