ionic tutorial - Ionic Platform (Ionic Cloud) for Yo (Yeoman) Ionic Projects in Ionicframework - ionic framework - ionic 2 - ionic creator - ionic development
Ionic Platform:
Build, push, deploy, and scale your Ionic apps, the easy way.
Title Description:
The Ionic Platform is a cloud platform for managing and scaling cross-platform mobile apps. Integrated services enable you and your team to build, deploy, and grow your apps efficiently.
Document Objective:
Ionic Platform works well with the standard Ionic projects. But projects following any Non-standard Directory Structure may face a few hurdles. This documents provides the steps to use Ionic Platform in the Ionic projects created using Yeoman.
Document Scope:
This document covers the basic steps for creating an Ionic project using Yeoman and integrating it with Ionic Platform using the Ionic Platform Web Client. This document covers the basic steps to utilize Ionic Deploy, Ionic Analytics and Ionic Push.
Intended Audience:
The intended audience for this document is Web/Mobile App developers, with both beginner and expert level expertise, who are familiar with the below Prerequisites.
Prerequisites:
You should be familiar with the following frameworks/tools before trying this document.
- AngularJs: https://docs.angularjs.org/guide
- IonicFramework: http://ionicframework.com/docs/guide
- Yeoman: http://yeoman.io/codelab/index.html
- Ionic Generator: https://github.com/diegonetto/generator-ionic
- Ionic Platform: https://ionic.io/platform
Ionic Framework generator
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. npm is the package manager for JavaScript.
Yeoman helps you to kick-start new projects, prescribing best practices and tools to help you stay productive.
In package.json include the following in devDependencies
In bower.json include the following in dependencies
In Gruntfile.js change the scripts folder to ‘js’. Change in index.html too if required.
Then run the program
ionic-platform-web-client
We need some code to let your app talk to the Ionic Platform. We need to add the Ionic platform web client for the Ionic app to interface with the plugins and the Ionic.io platform.
In your app.js add the ‘ionic.service.core’ module dependency. In Gruntfile.js add the grunt task ‘ionicSettings’ as given below.
Add the 'ionicSettings' in init and compress tasks after copy. In index.html move the below tag after all the tag declarations.
Then run the program
Ionic Deploy
Ionic Deploy lets you update your app on demand, for any changes that do not require binary modifications, saving you days, or even weeks, of wait time. Follow the below procedure to configure Ionic Deploy for your App. In Gruntfile.js add the grunt task ‘deploy’ as given below.
Then run the program
Ionic Deploy Code:
Deploying Updates:
Send out new code for your app. Create an apk and install your app. Make few changes in your code and deploy the changes using 'grunt deploy'. Then update it from your app. You can also deploy it from the apps.ionic.io dashboard. You can deploy the app without the deploy parameter. Then, in the dash board you can add the metadata and versioning details and deploy the app from there.
Ionic Analytics
How many users are on your app right now? How many of those will use your app tomorrow, or next week? Without information, you have no way of telling if your app is being used in the ways that you expect. Follow the below procedure to configure Ionic Analytics for your App. In your app.js add the ‘ionic.service.analytics’ module dependency after the ionic.service.core Run the analytics register method in our module's run function.
In Ionic Analytics, each tracked action a user makes in your app is represented by an event object. An event is a single action done at a specific point in time. To track your own events, call $ionicAnalytics.track(eventType, eventData) whenever an action occurs.
The ion-track-tap directive sends an event when its host element is tapped. The associated ion-track-data directive attaches event data.
In the apps.ionic.io dashboard you can view the following analytics data, Events: View the raw number of events over time, or the number of unique users who completed an event. An event can be anything from a user loading the app, to confirming a purchase. Funnels: A funnel is a sequence of actions that you expect users to take in your app, leading up to a defined goal. Thoughtful use of funnels will let help you improve conversion rates. Segments: View events over time, grouped by a specified property. Or, calculate the percentage of events that match a given property. Segments helps you understand your user base and see how properties change over time. Retention: Track how long users are active on your app before they stop using it. Or, identify how long it takes for users to reach a defined goal, like a completed sale. Pulse: A live feed of events coming in from your users.
Ionic Push
Ionic Push lets you create targeted push notifications through a simple dashboard that will be sent automatically when users match specific criteria, and offers a simple API to send push notifications from your own servers.
Android Push Profiles:
Android push notifications use the Google Cloud Messaging (GCM) service. Open the Google Developers Console and create a project. Copy down your project number. This will be the GCM sender ID or GCM
In the API Manager section, enable the Google Cloud Messaging API. Then navigate to Credentials section and select Create credentials, then choose API Key, then Server Key. Name your API key and leave the Accept requests from... field blank and click Create. Save your API key!
Authentication:
Go to your app's dashboard on the Ionic Platform and navigate to Settings -> Certificates. If you haven't already, create a new security profile, then hit edit. Note down the Profile Tag. Now, click the Android tab and find the section marked Google Cloud Messaging, enter the API Key you generated on the Google Developer Console, then click Save. Go to Settings -> API Keys. Under API Tokens, create a new token and copy it. This will your API Token.
Note: phonegap-plugin-push requires Android Support Repository version 32+ In your app.js add the ‘ionic.service.push’ module dependency after the ionic.service.core Ionic Push Code: Initialize the service and register your device in your module's run function. You'll need the device token that is registered by the user for sending notification to the user.
then run the program
Ionic Push lets you create targeted push notifications through the dashboard. You can also send notifications from the server in the below format.
Note: The steps to configure Ionic Push for iOS is the same except for creating the Push Profiles.
Sample App
A Sample app is attached here for reference.
Note: This is not a standalone project. The code given is only for comparison against a project created and implemented using the procedures given above in this document, in case of any issues or errors.