Looking for example of ngCordova used with Angular-Meteor

The tutorials reference it but cannot seem to get it to work properly. thanks

1 Like

The only example I could find was https://github.com/netanelgilad/meteor-ionic-example, which uses https://atmospherejs.com/netanelgilad/ng-cordova.

I could get it working seamlessly.

i resolved my issue by using the ionic CLI approach instead of the otherway around - thanks

I am experiencing the same issue as aaronksaunders.

I added the ngCordova package:

meteor add netanelgilad/ng-cordova

but I failed at:

angularMeteor.requires.push('ngCordova.plugins.datePicker');

I got the error: angularMeteor undefined

var app = angular
  .module('wensixiu', [
    'angular-meteor',
    'ionic',
    'ngCordova.plugins.datePicker'
  ]);

angularMeteor.requires.push('ngCordova.plugins.datePicker');

thanks for any help.