blakgeek / cordova-plugin-cocoapods-support

A Cordova/PhoneGap plugin to add support for CocoaPods dependencies.
MIT License
72 stars 72 forks source link

Support for use_frameworks! :linkage => :static #51

Open hvaughan3 opened 4 years ago

hvaughan3 commented 4 years ago

Starting with CocoaPods 1.9.0, they now allow you to specify use_frameworks! :linkage => :static in your pod file so cocoa pods will generate full frameworks with statically linked libraries and module map files. I need this in order to successfully combine cordova-plugin-firebase-analytics with the latest version of Google Tag Manger pods.

It would be nice if this plugin could support this because currently I don't believe cordova.ios is able to.

Perhaps allowing both:

<pods-config use-frameworks="true">

and

<pods-config use-frameworks=":linkage => :static">