A library that is depdendency of another library is not recognized in android

Im creating a plugin that needs a library (fullCamera) that uses a different library (ecoGallery) If I run a demo project on the command line cordova run android, the second gallery is not recognized ( package us.feras.ecogallery does not exist). But if I run Eclipse, the project works as it should.

Has anyone ever come across something like this? Any suggestion?

The ecoGallery library is inside the fullCamera library, so the application project.propertiesrequires both fullCamera and fullCamera to project.propertiesrequire ecoGallery.

+4
source share
1 answer

Have you tried this?

<dependency id="dependency_package_name"/> 

<dependency id="dependency_package_name" url="giturl"/>

in the plugin.xml file.

+1
source

All Articles