---
title: "Getting the currently used version"
canonical_url: "https://www.nutrient.io/guides/android/license-issues/getting-the-currently-used-version/"
md_url: "https://www.nutrient.io/guides/android/license-issues/getting-the-currently-used-version.md"
last_updated: "2026-05-15T19:10:04.920Z"
description: "Solutions for common issues and errors in Nutrient Android SDK with debugging tips and workarounds."
---

If you are unsure about the version of Nutrient you are using, there are ways to find out. In code, the `PSPDFKit` class will show the current version number via its static `VERSION` field. If your app depends on it, you can access it at runtime:

### KOTLIN

```kotlin

val versionString = PSPDFKit.VERSION

```

### JAVA

```java

final String versionString = PSPDFKit.VERSION;

```

You can also inspect the contents of the `VERSION` field inside Android Studio to get the version number at development time.

---

## Related pages

- [Easily add a license key to your Android app](/guides/android/troubleshooting/license/add-license-key.md)
- [What Is A Bundle Id](/guides/android/faq/what-is-a-bundle-id.md)
- [Updates Have Expired](/guides/android/license-issues/updates-have-expired.md)
- [Using The License Key In Other Languages](/guides/android/license-issues/using-the-license-key-in-other-languages.md)

