Repository: cordova-docs Updated Branches: refs/heads/master 9eba609a5 -> 69adbc198
CB-5682 - Update Plugin Spec for new framework tag attribute "custom" Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/69adbc19 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/69adbc19 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/69adbc19 Branch: refs/heads/master Commit: 69adbc198778db14212b56dd1c6e94cb1255163e Parents: 9eba609 Author: Shazron Abdullah <[email protected]> Authored: Fri Feb 14 14:36:53 2014 -0800 Committer: Shazron Abdullah <[email protected]> Committed: Fri Feb 14 14:36:53 2014 -0800 ---------------------------------------------------------------------- docs/en/edge/plugin_ref/spec.md | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/69adbc19/docs/en/edge/plugin_ref/spec.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/plugin_ref/spec.md b/docs/en/edge/plugin_ref/spec.md index 95374fe..55eba0d 100644 --- a/docs/en/edge/plugin_ref/spec.md +++ b/docs/en/edge/plugin_ref/spec.md @@ -512,6 +512,7 @@ Examples: <framework src="libsqlite3.dylib" /> <framework src="social.framework" weak="true" /> + <framework src="relative/path/to/my.framework" custom="true" /> The `src` attribute identifies the framework, which plugman attempts to add to the Cordova project, in the correct fashion for a given @@ -520,6 +521,8 @@ platform. The optional `weak` attribute is a boolean indicating whether the framework should be weakly linked. The default is `false`. +The optional `custom` attribute is a boolean indicating whether the framework is one that is included as part of your plugin files (thus it is not a system framework). The default is `false`. + ## _info_ Element Additional information provided to users. This is useful when you
