getVersion

Overview

Gets AATKit version.

Syntax

getVersion(callback)

callback (REQUIRED)

Callback<String> Used to provide the function call result to JavaScript.

Parameters:

  • String- AATKit version.

Examples

AATKitCordova.getVersion((version) => {
                console.log("version " + version);
            });

Last updated