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

https://github.com/kanocomputing/cordova-plugin-grt

Allows you to use The Gesture Recognition Toolkit from your web pages running with cordova
https://github.com/kanocomputing/cordova-plugin-grt

Last synced: over 1 year ago
JSON representation

Allows you to use The Gesture Recognition Toolkit from your web pages running with cordova

Awesome Lists containing this project

README

          

# Cordova Plugin GRT

🚨 Incomplete and unmaintained proof of concept. 🚨

Allows you to use The Gesture Recognition Toolkit from your web pages running with cordova.

## API

The API follows the API available here (https://github.com/KanoComputing/android-grt).

Due to the nature of a cordova plugin, every call must be asynchronous. To instantiate the GRT classes, you need to call which will return a promise.

Example
```js

grt.createTimeSeriesClassificationData()
.then((trainingData) => {
// Do something here
return trainingData.setInfoText('My Text');
});

```

## iOS Development

The [GRT library](https://github.com/nickgillian/grt) comes prebuilt inside `ios-grt.framework`.
To rebuild/modify the bindings see the [ios-grt](https://github.com/KanoComputing/ios-grt) repo.

It would be good to explore the possibility of building the framework from scratch on plugin add.