Vinay Podili
Vinay Podili

Reputation: 345

How to Create cordova hybrid Android, ios apps through terminal by using ember.js framework?

I am new to Ember.js web applications. Actually I want to developing mobile applications like ios, android cordova hybrid application by using ember.js framework. How can I create ember cordova hybrid ios application through terminal and what are the following steps?

Upvotes: 1

Views: 843

Answers (2)

Abdullah
Abdullah

Reputation: 2963

To Create Cordova plugin follow the following Step:

  • Installing Plugman (npm install -g plugman)
  • plugman create --name testCordovaPlugin --plugin_id cordova-plugin-testCordovaPlugin --plugin_version 0.1.0

enter image description here

Upvotes: 0

Diné Bennett
Diné Bennett

Reputation: 272

You can use ember-cli-cordova.

Their "getting started" doc has everything you need to get going: http://git.io/vIKj9

All the best!

Upvotes: 2

Related Questions