Skip to content

karolszafranski/tabris-js-hello-world

This branch is 98 commits behind eclipsesource/tabris-js-hello-world:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

418f480 · Sep 15, 2017

History

34 Commits
Sep 15, 2017
Jul 19, 2017
Jun 7, 2017
Jul 19, 2017
Aug 16, 2017
Dec 14, 2016
Jun 16, 2017
Jun 16, 2017
Sep 4, 2017
Jun 7, 2017
Jun 7, 2017

Repository files navigation

Build Status

Hello World example for Tabris.js

Build with Docker

Create the tabris-cli Docker image:

$ docker build . -t tabris-cli

Run a tabris-cli container with mounted workspace:

$ cd tabris-js-hello-world
$ docker run -it --rm -v "$PWD":/workspace tabris-cli /bin/bash

Within the container prepare and build tabris-js-hello-world app with:

# npm install
# BUILD_NUMBER=4 tabris build android
...
BUILD SUCCESSFUL

Total time: 52.348 secs
Built the following apk(s):
	/workspace/build/cordova/platforms/android/build/outputs/apk/android-debug.apk

If you want to sign your app with the same key in each build (e.g. when using Google Maps) you can use --cordova-build-config. (This parameter has been itroduced to Tabris CLI with version 0.6.0)

$ tabris build android --debug --cordova-build-config=cordovaBuildConfig.json

The following cordovaBuildConfig.json contains the signing details for a debug build:

{
  "android": {
    "debug": {
      "keystore": "../signing/debug.keystore",
      "storePassword": "android",
      "alias": "androiddebugkey",
      "password" : "android"
    }
  }
}

About

Tabris.js Example App

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%