---
title: "Check current SDK version quickly"
canonical_url: "https://www.nutrient.io/guides/flutter/troubleshooting/getting-the-currently-used-version/"
md_url: "https://www.nutrient.io/guides/flutter/troubleshooting/getting-the-currently-used-version.md"
last_updated: "2026-05-15T15:53:41.581Z"
description: "Learn how to check the currently used SDK version with simple steps and tips for both PSPDFKit.xcframework and PSPDFKitUI.xcframework."
---

# How to find your current SDK version

If you’re unsure which version of Nutrient you’re using, there are ways to find out.

The current way to ask for the framework version at runtime is:

### SWIFT

```swift

let pspdfVersionString = PSPDFKit.SDK.versionString

```

### OBJECTIVE-C

```objc

NSString *pspdfVersionString = PSPDFKitGlobal.versionString;

```

Another option is to open `PSPDFKit.xcframework` or `PSPDFKitUI.xcframework`. Inside, you’ll find the `VERSION` file with the version number inside.

It’s necessary to use the same version from the same disk image for both `PSPDFKit.xcframework` and `PSPDFKitUI.xcframework``

Beginning with Nutrient iOS SDK 6.6.0, the topmost folder in the downloaded disk image has the same name as the version of Nutrient in use.

---

## Related pages

- [How to add the license key for your Flutter app](/guides/flutter/troubleshooting/add-license-key.md)
- [How to find your iOS app bundle ID quickly](/guides/flutter/troubleshooting/finding-the-bundle-id.md)
- [Flutter Configuration Problems](/guides/flutter/troubleshooting/flutter-configuration-problems.md)
- [Ios Flutter Platform Not Detected](/guides/flutter/troubleshooting/ios-flutter-platform-not-detected.md)
- [Cocoapods Conflicts With Asdf](/guides/flutter/troubleshooting/cocoapods-conflicts-with-asdf.md)
- [Manage status bar appearance in Flutter](/guides/flutter/troubleshooting/view-controller-based-status-bar-appearance.md)
- [Pspdfkit Widget Appcompat Activity Issue](/guides/flutter/troubleshooting/pspdfkit-widget-appcompat-activity-issue.md)
- [Using Android Gradle Plugin 7](/guides/flutter/troubleshooting/using-android-gradle-plugin-7.md)
- [What Is An App Id](/guides/flutter/troubleshooting/what-is-an-app-id.md)
- [Understanding bundle IDs for iOS app development](/guides/flutter/troubleshooting/what-is-a-bundle-id.md)
- [Measurement Magnifier Not Working On Android](/guides/flutter/troubleshooting/measurement-magnifier-not-working-on-android.md)

