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.
- cordova (> 7.0)
- Android SDK
- ember-cli (> 2.13)
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.
This guide is mainly for Android but it should work for iOS.
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
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!