GitHub user mbektchiev opened a pull request:
https://github.com/apache/cordova-lib/pull/21
CB-6698: Support library references for Android via the framework tag
The framework tag can be contain the following attributes:
* **src** - (**required**) relative path to the directory containing the
referenced library project.
* **custom** - (optional) specifies how to treat **src**. If **true** it is
a relative path from the application project's directory, otherwise -- the
Android SDK directory.
* **parent** - (optional) relative path to the directory containing the
project to which to add the reference. The default is the application project.
Example: A plugin that installs a library (**FeedbackLib**) which refers
another library from the Android SDK (**appcompat**)
```xml
<source-file src="src/android/FeedbackLib" target-dir="./" />
<framework src="FeedbackLib" custom="true" />
<framework src="extras/android/support/v7/appcompat" parent="FeedbackLib" />
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/Icenium/cordova-lib
bektchiev/framework-tag-for-android
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/cordova-lib/pull/21.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #21
----
commit 0227d7bb7831ad1dfe0c6531e319bf8106256a03
Author: Martin Bektchiev <[email protected]>
Date: 2014-05-27T11:53:19Z
CB-6698: Support library references for Android via the framework tag
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---