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

https://github.com/streamaserver/streama-app

A mobile/Tablet/TV app for streama
https://github.com/streamaserver/streama-app

Last synced: about 1 year ago
JSON representation

A mobile/Tablet/TV app for streama

Awesome Lists containing this project

README

          

Streama App
==============

Get it in the play store now:

[
![Get in in the google play store](https://play.google.com/intl/en_us/badges/images/badge_new.png)](https://play.google.com/store/apps/details?id=dularion.streama)

![Dashboard view](https://gallery.mailchimp.com/fffb1c6bc696ea2d4c3a7a393/images/ab0ce808-c4c5-43c0-bd6e-ed446d868b2b.png)

![Player view](https://gallery.mailchimp.com/fffb1c6bc696ea2d4c3a7a393/images/01eb29ff-14cc-41ee-942a-64adcd0a6c89.png)

This app requires a running streama service with a public url. Connect to it in the setup, login, and enjoy all the features from the website but with a smooth mobile UI.

## Developing on this project

Prerequisites:

```bash
$ npm install -g ionic cordova
```

To start this app, run

```bash
bower install
npm install
ionic serve
```

# building for release
### first x86
- change version-number in config.xml (last digit should be 1)
- run `nvm use v9.9.0`
- run `ionic cordova build --release android`
- run `jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore platforms/android/build/outputs/apk/android-x86-release-unsigned.apk alias_name`
- `cd platforms/android/build/outputs/apk/`
- adjust v-number & run ` ~/Library/Android/sdk/build-tools/26.0.2/zipalign -v 4 android-x86-release-unsigned.apk streama_x86_0.2.0.1.apk`

### then armv7
- new Terminal
- change version-number last digit to 2
- run `nvm use v9.9.0`
- run `ionic cordova build --release android`
- run `jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore platforms/android/build/outputs/apk/android-armv7-release-unsigned.apk alias_name`
- `cd platforms/android/build/outputs/apk/`
- adjust v-number & run ` ~/Library/Android/sdk/build-tools/26.0.2/zipalign -v 4 android-armv7-release-unsigned.apk streama_armv7_0.2.0.2.apk`