When AngularJS injects dependencies into a function that does not have an explicit dependency specification, it matches up dependencies with function parameters by name. This is dangerous, since some source code transformations such as minification may change the names of parameters. Such a renaming will break the AngularJS application.

Do not use implicit annotations for dependency injected functions when the code is minified later.

The following example shows an AngularJS controller with implicit dependency annotations.

This is problematic, since the minified version of this controller could look like the following:

This would mean that the function is dependency-injected with the dependency named "a", which does not exist, leading to a crash at runtime.

Instead, in order to support minification, specify the dependencies with explicit annotations:

  • AngularJS Developer Guide: Dependency Injection - Implicit Annotation.