You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/06/27 17:33:08 UTC

[4/6] docs commit: CB-6698 Remove explicit `` from example since `` now copies it in by default

CB-6698 Remove explicit `<source-file>` from example since `<framework>` now copies it in by default


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/cfcf1de9
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/cfcf1de9
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/cfcf1de9

Branch: refs/heads/master
Commit: cfcf1de96b88cb416bab63292256afaf4542df7f
Parents: 900c43e
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Jun 27 11:13:09 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Fri Jun 27 11:31:25 2014 -0400

----------------------------------------------------------------------
 docs/en/edge/plugin_ref/spec.md | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfcf1de9/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 0885cbd..0767fc6 100644
--- a/docs/en/edge/plugin_ref/spec.md
+++ b/docs/en/edge/plugin_ref/spec.md
@@ -528,9 +528,7 @@ The optional `custom` attribute is a boolean indicating whether the framework is
 The optional `type` attribute is a string indicating the type of framework to add. Currently only `projectReference` is supported and only on Windows 8.  Using `custom='true'` and `type='projectReference'` will add a reference to the project which will be added to the compile+link steps of the cordova project.  This essentially is the only way currently that a 'custom' framework can target multiple architectures as they are explicitly built as a dependency by the referencing cordova application.
 
 The optional `parent` attribute is currently supported only on Android. It sets the relative path to the directory containing the sub-project to which to add the reference. The default is `.`, i.e. the application project. It allows to add references between sub projects like in this example:
-	
-	<source-file src="src/android/FeedbackLib" target-dir="./" />
-	
+
 	<framework src="FeedbackLib" custom="true" />
 	<framework src="extras/android/support/v7/appcompat" custom="false" parent="FeedbackLib" />
 
@@ -544,7 +542,7 @@ plugman's scope.  Examples:
     You need to install __Google Play Services__ from the `Android Extras` section using the Android SDK manager (run `android`).
 
     You need to add the following line to the `local.properties`:
-        
+
     android.library.reference.1=PATH_TO_ANDROID_SDK/sdk/extras/google/google_play_services/libproject/google-play-services_lib
     </info>