m69

Results 4 comments of m69

Use the cordova plugin but it only works when on a device. Add the typeof check for dev in the browser. `declare const ApiAIPlugin: any;` then.... ``` platform.ready().then(() => {...

Keep in mind that I'm using the cordova plugin and not the JS library. I can confirm I have it working properly - on a device only because of cordova....

`declare const ApiAIPlugin: any;` then.... ``` platform.ready().then(() => { // API AI if (typeof ApiAIPlugin != 'undefined') { ApiAIPlugin.init( { clientAccessToken: "", // insert your client access key here lang:...