Reputation: 588
Im creating a plugin which will need a library (fullCamera) which uses another library (ecoGallery)
If I run my demo project on the command line cordova run android
, the second gallery isn't recognized (package us.feras.ecogallery does not exist
). But if I run on Eclipse, the project works as it should.
Does anyone ever faced something like this? Any suggestion?
The ecoGallery library is inside the fullCamera library, so, the app's project.properties
requires fullCamera and fullCamera's project.properties
requires ecoGallery.
Upvotes: 4
Views: 117
Reputation: 1319
Did you tried this?
<dependency id="dependency_package_name"/>
<dependency id="dependency_package_name" url="giturl"/>
in the plugin.xml file.
Upvotes: 1