It seems that you did not install the module with the ion service and did not configure the application. You will need to do the following:
1) Install Ionic Service Core. Run ionic add ionic-service-core at the command prompt for your project
2) Add this script tag to index.html
<script src="lib/ionic-service-core/ionic-core.js"></script>
3) Add the ionic.service.core module to your app.js as follows:
angular.module('starter', ['ionic', 'ionic.service.core', 'starter.controllers'])
jcaruso
source share