I have the following code:
appModule = angular.module(\'appModule\', []); appModule.factory(\'sharedApplication\', function($rootScope, $http) { var sharedApp
Try
appModule.factory('sharedApplication', ['$rootScope','$http',function($rootScope, $http) { }]);
regards