How to integrate Cordova/Phonegap plugins within Angular/Ionic the right way?

Hey @coen_warmer, a good way to do this is to use the run function:

angular.module('myModule', ['ionic'])
.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Initialize plugin here
  });
});

Does that help?