MyScript / MyScriptJS

:pencil2: :cloud: MyScriptJS is the fastest way to integrate rich handwriting recognition features in your webapp.

Home Page:https://developer.myscript.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Offline version

andreysamode opened this issue · comments

Is there an offline version that can be integrated into an app that could still work when the connection is offline?

Recognition is done on remote servers. If you have to develop an application working without being connected, you should consider native API (Android, IOS, Windows).
https://developer.myscript.com/docs/interactive-ink/1.1/overview/about/

That's great, thanks. Can the native API for Android be used on a webview canvas?

We never have experienced with hybrid applications. At least, it could be possible to create a binding with a Cordova/Phonegap plugin. We never tried, so i don't know if it's a dead end.

Sounds good. I'm not using Cordova/Phonegap, but I can experiment with using Android's JavaScript Interface. I'll dig around your API documentation.

On your requirements it says "Android SDK API 26 and higher (even if the libraries runs with Android SDK API 21 and higher)". I'm working on an Android 6.0 Implementation (API 23). Will it work as long as it's 21+ or is it only for 26+?

The example code has targetSdkVersion = 26 as we try to follow Google's recommendation to always target the latest SDK. In the doc, the requirements to run the "Get Started" ask for SDK 26 for things to work out-of-the-box. In your case, if you set targetSdkVersion = 23, it should work without any problem.

Great, thanks.