Is it possible to use ngCordova with Adobe's Phonegap Build service? This article states that the phonegap build service can now leverage cordova plugins. It specifies that plugins must be sourced from plugins.cordova.io. So for example, in config.xml:
<gap:plugin name="com.phonegap.plugins.example" version="0.3.3" source="plugins.cordova.io" />
However, the docs for ngCordova typically only point to a github repository, rather than a hosting location at plugins.cordova.io, e.g. http://ngcordova.com/docs/plugins/appVersion/Is there a way to determine if a particular ngCorova supported plugin is available at plugins.cordova.io so that it can be included in phonegap's config.xml as a gap plugin?
I don't think that simply adding them to the project locally, for example
cordova plugin add https://github.com/whiteoctober/cordova-plugin-app-version.git
will work when compiling with the phonegap build service.