Skip to content

This is a basic Ember.js hello world install on Cordova using Android plugin. It has been tested on Ubuntu 17.04

Notifications You must be signed in to change notification settings

rimian/cordova-ember-android

Repository files navigation

Cordova Ember Android

This is a basic Ember.js hello world install on Cordova using Android plugin. If it all works properly, you should be able to start up an Android emulator.

Prerequisites

Note: The Cordova 7.0.1 emulator has a bug. See: https://issues.apache.org/jira/browse/CB-12981. The fix/patch has been applied to this codebasse.

Supported Platforms

This guide is mainly for Android but it should work for iOS.

Installation

git clone https://github.com/rimian/cordova-ember-android.git
cd cordova-ember-android
npm install

The documentation at ember-cli-cordova says you can set the platform in config but that doesn't seem to work. To install and build for Android, you'll need to pass the --platform=android flag in to your commands.

To run a build run

ember cordova:build --platform=android

The Emulator

There's a compatibility issue with Android SDK and libstdc++ on Ubuntu:

sudo apt-get install lib64stdc++6
cd ~/Android/Sdk/emulator/lib64/libstdc++
sudo mv libstdc++.so.6 libstdc++.so.6.old ## backup the old file
sudo ln -s /usr/lib64/libstdc++.so.6 libstdc++.so.6

Run the emulator:

cd cordova/
cordova emulate android

If that all works, you should see the Ember.js welcome page. Yipee!

About

This is a basic Ember.js hello world install on Cordova using Android plugin. It has been tested on Ubuntu 17.04

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published