spiegel-keyman/android/docs/engine/KMManager/getVersion.md
2024-10-31 10:08:17 +07:00

32 lines
494 B
Markdown

---
title: KMManager.getVersion()
---
## Summary
The **`getVersion()`** method returns the version number of Keyman
Engine.
## Syntax
``` javascript
KMManager.getVersion()
```
### Returns
Returns Keyman Engine version number as `String`.
## Description
Use this method to get the version number of Keyman Engine.
## Examples
### Example: Using `getVersion()`
The following script illustrate the use of `getVersion()`:
``` javascript
String version = KMManager.getVersion();
```