Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rimian/cordova-ember-android

This is a basic Ember.js hello world install on Cordova using Android plugin. It has been tested on Ubuntu 17.04
https://github.com/rimian/cordova-ember-android

android cordova cordova-android emberjs ubuntu1704

Last synced: 10 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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

- [cordova](https://www.npmjs.org/package/cordova) (> 7.0)
- [Android SDK](https://developer.android.com/studio/index.html)
- [ember-cli](http://www.ember-cli.com) (> 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.

## 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](https://github.com/poetic/ember-cli-cordova/blob/master/docs/getting-started.md) 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!