GitHub user breautek added a comment to the discussion: How to write a build script to change framework from "Do not Embed" to "Embed and sign"
I think you want to use the [framework](https://cordova.apache.org/docs/en/12.x/plugin_ref/spec.html#framework) tag instead. I have an example usage which does exactly what you want in an older plugin that I used to maintain: https://github.com/totalpaveinc/cordova-plugin-libsqlite/blob/main/plugin.xml#L22 It does require [improvements](https://github.com/apache/cordova-ios/pull/1266) added in cordova-ios 7. If I recall correctly, older versions it was impossible to embed AND link at the same time, because linking was always the inverse of embedding. The PR merged for 7.0.0 release effectively adds the `link` directive allowing you to both embed and link. Therefore for this to work properly you'll also need to be using `cordova-ios@^7`. GitHub link: https://github.com/apache/cordova/discussions/477#discussioncomment-9546388 ---- This is an automatically sent email for issues@cordova.apache.org. To unsubscribe, please send an email to: issues-unsubscr...@cordova.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org