I seem to have misunderstood the tutorial and am struggling to get manual injection working on my project.
As I'm preparing to minify and mangle my JS code, I decided to manually inject all my modules and controllers. However, I keep encountering errors stating that the providers do not exist.
Here is an example of what I am attempting: http://jsfiddle.net/apuN8/5/
angular
.module('manual.injection', [])
.config($injector.invoke(['$provide', function ($provide) {
// Struggling to progress beyond this point
}]));
If anyone can offer assistance, it would be greatly appreciated.